Skip to content

Commit 8c7f5fd

Browse files
committed
Merge pull request #28 from locol23/refactor/update-redux-base
refactor: update redux-base
2 parents 9be07b4 + f193584 commit 8c7f5fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/redux-base/src/store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import { reducer } from './reducer'
33

44
export const store = createStore(
55
reducer,
6-
// tslint:disable-next-line
7-
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
6+
(window as any).__REDUX_DEVTOOLS_EXTENSION__ &&
7+
(window as any).__REDUX_DEVTOOLS_EXTENSION__()
88
)

0 commit comments

Comments
 (0)