fix: do not use optional catch binding syntax (#1431)

This commit is contained in:
M. Skrzypek 2022-12-05 13:28:14 +01:00 committed by GitHub
parent 7f79df4b04
commit f548963992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,7 +160,7 @@ const devtoolsImpl: DevtoolsImpl =
try {
extensionConnector =
(enabled ?? __DEV__) && window.__REDUX_DEVTOOLS_EXTENSION__
} catch {
} catch (e) {
// ignored
}