Skip to content

Commit

Permalink
Allow Redux-devtools to test on qa
Browse files Browse the repository at this point in the history
Should be reverted
  • Loading branch information
tomivm committed Jul 12, 2023
1 parent 1e15a76 commit 13e41eb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ export default function configureStore(initialState = {}) {
// If Redux DevTools Extension is installed use it, otherwise use Redux compose
/* eslint-disable no-underscore-dangle */
const composeEnhancers =
process.env.NODE_ENV !== 'production' &&
typeof window === 'object' &&
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
typeof window === 'object' && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__
: compose;

Expand Down

0 comments on commit 13e41eb

Please sign in to comment.