Skip to content

Commit 51a269b

Browse files
committed
Fixes store type that somehow broke (minor update of redux I assume) - #3
1 parent 7cc5fc5 commit 51a269b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/redux/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import rootReducer from './reducers';
66
import { IStore } from './IStore';
77
import { createLogger } from 'redux-logger';
88

9-
export function configureStore(history, initialState?: IStore): Redux.Store<IStore> {
9+
export function configureStore(history, initialState?: IStore): Redux.Store<{}> {
1010

1111
const middlewares: Redux.Middleware[] = [
1212
routerMiddleware(history),

0 commit comments

Comments
 (0)