Skip to content

Commit

Permalink
fix redux store persistConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
cajubelt committed Oct 13, 2023
1 parent 9b3d715 commit fe55f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const persistConfig: PersistConfig<RootState> = {
key: 'root',
// default is -1, increment as we make migrations
// See https://github.com/valora-inc/wallet/tree/main/WALLET.md#redux-state-migration
version: 157,
version: 158,
keyPrefix: `reduxStore-`, // the redux-persist default is `persist:` which doesn't work with some file systems.
storage: FSStorage(),
blacklist: ['networkInfo', 'alert', 'imports', 'keylessBackup'],
Expand Down

0 comments on commit fe55f04

Please sign in to comment.