Remove unused references to ThunkAction. Fixes a build error since @types/redux-thunk 2.2.0 removes the ThunkAction export.
This commit is contained in:
parent
a046bd2021
commit
867d070263
|
|
@ -1,4 +1,4 @@
|
|||
import { Action, Reducer, ThunkAction } from 'redux';
|
||||
import { Action, Reducer } from 'redux';
|
||||
|
||||
// -----------------
|
||||
// STATE - This defines the type of data maintained in the Redux store.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { fetch, addTask } from 'domain-task';
|
||||
import { Action, Reducer, ThunkAction, ActionCreator } from 'redux';
|
||||
import { Action, Reducer, ActionCreator } from 'redux';
|
||||
import { AppThunkAction } from './';
|
||||
|
||||
// -----------------
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
"@types/react-router": "^2.0.30",
|
||||
"@types/react-router-redux": "^4.0.30",
|
||||
"@types/redux": "3.5.27",
|
||||
"@types/redux-thunk": "^2.1.28",
|
||||
"@types/source-map": "^0.1.28",
|
||||
"@types/uglify-js": "^2.0.27",
|
||||
"@types/webpack": "^1.12.35",
|
||||
|
|
@ -37,7 +36,7 @@
|
|||
"react-router": "^2.8.1",
|
||||
"react-router-redux": "^4.0.6",
|
||||
"redux": "^3.6.0",
|
||||
"redux-thunk": "^2.1.0",
|
||||
"redux-thunk": "^2.2.0",
|
||||
"style-loader": "^0.13.0",
|
||||
"ts-loader": "^0.8.1",
|
||||
"typescript": "^2.0.3",
|
||||
|
|
|
|||
Loading…
Reference in New Issue