From e10b25857e3c6f46b781ebe321c1984e31ff776f Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Wed, 11 Aug 2021 10:43:37 +0100 Subject: [PATCH] random id for acp local storage --- store/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/store.js b/store/store.js index e59d8bdb..154ae5e8 100644 --- a/store/store.js +++ b/store/store.js @@ -103,7 +103,7 @@ const makeStore = ({ isServer }) => { const storage = require("redux-persist/lib/storage").default; const persistConfig = { - key: "acp", + key: "acp_" + Math.floor(100000 + Math.random() * 900000), whitelist: [ "currentView", "search",