Browse Source

Removed unused pref key

Arnaud Vergnet 3 years ago
parent
commit
f759c44f20
1 changed files with 5 additions and 10 deletions
  1. 5
    10
      src/managers/AsyncStorageManager.js

+ 5
- 10
src/managers/AsyncStorageManager.js View File

@@ -24,6 +24,11 @@ export default class AsyncStorageManager {
24 24
 
25 25
     // Object storing preferences keys, default and current values for use in the app
26 26
     preferences = {
27
+        debugUnlocked: {
28
+            key: 'debugUnlocked',
29
+            default: '0',
30
+            current: '',
31
+        },
27 32
         showIntro: {
28 33
             key: 'showIntro',
29 34
             default: '1',
@@ -49,16 +54,6 @@ export default class AsyncStorageManager {
49 54
             default: '1',
50 55
             current: '',
51 56
         },
52
-        expoToken: {
53
-            key: 'expoToken',
54
-            default: '',
55
-            current: '',
56
-        },
57
-        debugUnlocked: {
58
-            key: 'debugUnlocked',
59
-            default: '0',
60
-            current: '',
61
-        },
62 57
         defaultStartScreen: {
63 58
             key: 'defaultStartScreen',
64 59
             default: 'home',

Loading…
Cancel
Save