forked from vergnet/application-amicale
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
|
// Object storing preferences keys, default and current values for use in the app
|
||||||
preferences = {
|
preferences = {
|
||||||
|
debugUnlocked: {
|
||||||
|
key: 'debugUnlocked',
|
||||||
|
default: '0',
|
||||||
|
current: '',
|
||||||
|
},
|
||||||
showIntro: {
|
showIntro: {
|
||||||
key: 'showIntro',
|
key: 'showIntro',
|
||||||
default: '1',
|
default: '1',
|
||||||
|
@ -49,16 +54,6 @@ export default class AsyncStorageManager {
|
||||||
default: '1',
|
default: '1',
|
||||||
current: '',
|
current: '',
|
||||||
},
|
},
|
||||||
expoToken: {
|
|
||||||
key: 'expoToken',
|
|
||||||
default: '',
|
|
||||||
current: '',
|
|
||||||
},
|
|
||||||
debugUnlocked: {
|
|
||||||
key: 'debugUnlocked',
|
|
||||||
default: '0',
|
|
||||||
current: '',
|
|
||||||
},
|
|
||||||
defaultStartScreen: {
|
defaultStartScreen: {
|
||||||
key: 'defaultStartScreen',
|
key: 'defaultStartScreen',
|
||||||
default: 'home',
|
default: 'home',
|
||||||
|
|
Loading…
Reference in a new issue