Skip to content

Commit

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

Expand Down

0 comments on commit 82f9f67

Please sign in to comment.