Skip to content

Commit

Permalink
fix: do not use optional catch binding syntax (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
mskrzypek committed Dec 5, 2022
1 parent 7f79df4 commit f548963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middleware/devtools.ts
Expand Up @@ -160,7 +160,7 @@ const devtoolsImpl: DevtoolsImpl =
try {
extensionConnector =
(enabled ?? __DEV__) && window.__REDUX_DEVTOOLS_EXTENSION__
} catch {
} catch (e) {
// ignored
}

Expand Down

0 comments on commit f548963

Please sign in to comment.