Skip to content

Commit

Permalink
feat(electron): don’t show dev tools on load (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwambach committed Jun 10, 2020
1 parent 64b6158 commit d41423d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/components/app/create-redux-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function createReduxStore() {
middlewares.push(offlineLoadMiddleware);
}

if (!isProduction || isElectron()) {
if (!isProduction) {
middlewares.push(createLogger({collapsed: true}));
}

Expand Down

0 comments on commit d41423d

Please sign in to comment.