diff --git a/browser/src/scripts/store/types.ts b/browser/src/scripts/store/types.ts index 49a315d6..fc1bff9d 100644 --- a/browser/src/scripts/store/types.ts +++ b/browser/src/scripts/store/types.ts @@ -17,7 +17,7 @@ */ import { Action } from 'redux'; -import { ThunkAction } from 'redux-thunk'; +import { ThunkAction as ReduxThunkAction } from 'redux-thunk'; import { AuthState } from './auth/types'; import { ComposerState } from './composer/types'; @@ -35,7 +35,7 @@ export interface AppState { } // ThunkAction is a thunk action type -export type ThunkAction = ThunkAction< +export type ThunkAction = ReduxThunkAction< Promise, AppState, void,