Skip to content

Commit

Permalink
Merge pull request #1538 from tomivm/master
Browse files Browse the repository at this point in the history
Allow Redux-devtools to test on qa
  • Loading branch information
tomivm authored Jul 12, 2023
2 parents 1e15a76 + 13e41eb commit fce7614
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 fce7614

Please sign in to comment.