chore: migrate redux-thunk to v4

pull/210/head
Boaz Poolman 2026-03-01 17:48:09 +01:00
parent 6c9e42cd02
commit 04e460d953
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { createStore, applyMiddleware, compose } from 'redux';
import thunkMiddleware from 'redux-thunk';
import { thunk } from 'redux-thunk';
import { Map } from 'immutable';
import rootReducer from '../state/reducers';
@ -10,7 +10,7 @@ const configureStore = () => {
const enhancers = [];
const middlewares = [
thunkMiddleware,
thunk,
];
let devtools;