Skip to content

Commit

Permalink
Fix: Update the import of redux-thunk
Browse files Browse the repository at this point in the history
The default export has been removed as of v3.1.0 and now there are
named exports.
  • Loading branch information
a-h-abdelsalam authored and timopollmeier committed Jan 29, 2024
1 parent 0fbf1e4 commit e001f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import {createStore, applyMiddleware} from 'redux';

import thunk from 'redux-thunk';
import {thunk} from 'redux-thunk';

import {createLogger} from 'redux-logger';

Expand Down

0 comments on commit e001f04

Please sign in to comment.