Skip to content

Commit

Permalink
remove token lists from persisted state (local storage)
Browse files Browse the repository at this point in the history
  • Loading branch information
ra-phael committed Jan 24, 2024
1 parent edfd52a commit 8f42d33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"editor.formatOnSave": false,
"editor.inlineSuggest.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
},
"files.eol": "\n",
"eslint.enable": true,
Expand Down
2 changes: 1 addition & 1 deletion src/state/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import transactions from './transactions/reducer'
import user from './user/reducer'
import wallets from './wallets/reducer'

const PERSISTED_KEYS: string[] = ['user', 'transactions', 'lists', 'registration']
const PERSISTED_KEYS: string[] = ['user', 'transactions', 'registration']

const store = configureStore({
reducer: {
Expand Down

0 comments on commit 8f42d33

Please sign in to comment.