Change redux-persist debounce to 10 seconds
This commit is contained in:
parent
35a5cb0918
commit
6c6f1beb19
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ const persistOptions = {
|
||||||
// Order is important. Needs to be compressed last or other transforms can't
|
// Order is important. Needs to be compressed last or other transforms can't
|
||||||
// read the data
|
// read the data
|
||||||
transforms: [saveClaimsFilter, saveFileInfosFilter, compressor],
|
transforms: [saveClaimsFilter, saveFileInfosFilter, compressor],
|
||||||
debounce: 1000,
|
debounce: 10000,
|
||||||
storage: localForage,
|
storage: localForage,
|
||||||
};
|
};
|
||||||
window.cacheStore = persistStore(reduxStore, persistOptions);
|
window.cacheStore = persistStore(reduxStore, persistOptions);
|
||||||
|
|
Loading…
Reference in a new issue