We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 075b3a0 commit 3569724Copy full SHA for 3569724
src/utils/actionTypes.js
@@ -5,8 +5,8 @@
5
* Do not reference these action types directly in your code.
6
*/
7
const ActionTypes = {
8
- INIT: '@@redux/INIT',
9
- REPLACE: '@@redux/REPLACE'
+ INIT: '@@redux/INIT' + Math.random().toString(36).substring(7).split('').join('.'),
+ REPLACE: '@@redux/REPLACE' + Math.random().toString(36).substring(7).split('').join('.')
10
}
11
12
export default ActionTypes
0 commit comments