diff --git a/pkg/interface/src/views/apps/settings/components/lib/CalmPref.tsx b/pkg/interface/src/views/apps/settings/components/lib/CalmPref.tsx index 4589a1a13a..d1d8bb9cbc 100644 --- a/pkg/interface/src/views/apps/settings/components/lib/CalmPref.tsx +++ b/pkg/interface/src/views/apps/settings/components/lib/CalmPref.tsx @@ -48,7 +48,6 @@ export function CalmPrefs(props: { _.forEach(v, (bool, key) => { const bucket = ['imageShown', 'videoShown', 'audioShown', 'oembedShown'].includes(key) ? 'remoteContentPolicy' : 'calm'; if(initialValues[key] !== bool) { - console.log('updating', bucket, key, bool); promises.push(api.settings.putEntry(bucket, key, bool)); } })