From f759c44f20bc4bfb6879b844fe77805b30f5605d Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Sat, 6 Jun 2020 20:03:23 +0200 Subject: [PATCH] Removed unused pref key --- src/managers/AsyncStorageManager.js | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/managers/AsyncStorageManager.js b/src/managers/AsyncStorageManager.js index 301e878..7f9b22c 100644 --- a/src/managers/AsyncStorageManager.js +++ b/src/managers/AsyncStorageManager.js @@ -24,6 +24,11 @@ export default class AsyncStorageManager { // Object storing preferences keys, default and current values for use in the app preferences = { + debugUnlocked: { + key: 'debugUnlocked', + default: '0', + current: '', + }, showIntro: { key: 'showIntro', default: '1', @@ -49,16 +54,6 @@ export default class AsyncStorageManager { default: '1', current: '', }, - expoToken: { - key: 'expoToken', - default: '', - current: '', - }, - debugUnlocked: { - key: 'debugUnlocked', - default: '0', - current: '', - }, defaultStartScreen: { key: 'defaultStartScreen', default: 'home',