diff --git a/src/utils/asyncStorage.ts b/src/utils/asyncStorage.ts index 0b917b6..c07b3d2 100644 --- a/src/utils/asyncStorage.ts +++ b/src/utils/asyncStorage.ts @@ -76,8 +76,6 @@ export function retrievePreferences( return new Promise((resolve: (preferences: PreferencesType) => void) => { AsyncStorage.multiGet(keys) .then((result) => { - console.log(result); - const preferences = { ...defaults }; result.forEach((item) => { let [key, value] = item;