Removed unused pref key
This commit is contained in:
parent
0c881f5ce9
commit
f759c44f20
1 changed files with 5 additions and 10 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue