interface: remove console.log

This commit is contained in:
Matilde Park 2021-05-13 09:56:01 -04:00
parent a11a1e42ce
commit e089a864a7

View File

@ -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));
}
})