diff --git a/app/soapbox/features/filters/index.tsx b/app/soapbox/features/filters/index.tsx index bccde00f21..c9b5039400 100644 --- a/app/soapbox/features/filters/index.tsx +++ b/app/soapbox/features/filters/index.tsx @@ -63,10 +63,7 @@ const FilterField: StreamfieldComponent = ({ value, onChange }) => const intl = useIntl(); const handleChange = (key: string): React.ChangeEventHandler => - e => { - // console.log({ ...value, [key]: e.currentTarget[e.currentTarget.type === 'checkbox' ? 'checked' : 'value'] }); - onChange({ ...value, [key]: e.currentTarget[e.currentTarget.type === 'checkbox' ? 'checked' : 'value'] }); - }; + e => onChange({ ...value, [key]: e.currentTarget[e.currentTarget.type === 'checkbox' ? 'checked' : 'value'] }); return (