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) {