From f5b9fd0bf57d88dda0505f3fe483f35169e65ca8 Mon Sep 17 00:00:00 2001 From: Torpenn Date: Sun, 13 Oct 2024 23:22:01 +0200 Subject: [PATCH] typo: remove console.log --- app/Settings.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/Settings.tsx b/app/Settings.tsx index 9753fb4..ce552ef 100644 --- a/app/Settings.tsx +++ b/app/Settings.tsx @@ -20,13 +20,10 @@ export default function Dashboard() { const init = async () => { try { const soundEnabledLocal = await loadUserSettings('soundEnabled'); - console.log('soundEnabledLocal', soundEnabledLocal); if (soundEnabledLocal === null) { - console.log('soundEnabledLocal is null'); setSoundEnabled(true); } else { - console.log('soundEnabledLocal is present', ); setSoundEnabled(Boolean(Number(soundEnabledLocal))); } } catch (error) {