Remove console.log

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2021-12-05 13:24:55 +01:00
parent 182bf21906
commit a1a0ede574

View file

@ -20,10 +20,7 @@ export interface SelectionInfoProps {
*/
export const SelectionInfo: React.FC<SelectionInfoProps> = ({ count, translationKey }) => {
useTranslation()
const countTranslationOptions = useMemo(() => ({ count: count }), [count])
console.log(count, translationKey)
return (
<span>
<Trans i18nKey={`editor.statusBar.selection.${translationKey}`} values={countTranslationOptions} />