Change redux-persist debounce to 10 seconds

This commit is contained in:
6ea86b96 2017-07-01 18:03:51 +07:00
parent 35a5cb0918
commit 6c6f1beb19

View file

@ -102,7 +102,7 @@ const persistOptions = {
// Order is important. Needs to be compressed last or other transforms can't
// read the data
transforms: [saveClaimsFilter, saveFileInfosFilter, compressor],
debounce: 1000,
debounce: 10000,
storage: localForage,
};
window.cacheStore = persistStore(reduxStore, persistOptions);