Skip to content

Commit

Permalink
Fix typo in importing counterReducer (#42162)
Browse files Browse the repository at this point in the history
## Bug

- [ ] Fixes type in importing counterReducer
  • Loading branch information
jaykch committed Oct 30, 2022
1 parent ee6601c commit 9bf811e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-redux/src/store.ts
@@ -1,6 +1,6 @@
import { configureStore, ThunkAction, Action } from '@reduxjs/toolkit'

import counterReducer from '../features/counter/counterSlice'
import counterReducer from './features/counter/counterSlice'

export function makeStore() {
return configureStore({
Expand Down

0 comments on commit 9bf811e

Please sign in to comment.