Skip to content

Commit

Permalink
chore: remove unused redux-thunk, bump some patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Coltin Kifer committed Dec 31, 2024
1 parent 9641c5a commit 20aca6e
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 106 deletions.
192 changes: 96 additions & 96 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"classnames": "^2.2.5",
"classnames": "^2.5.1",
"cross-fetch": "^3.1.2",
"d3-scale": "^3.2.3",
"d3-scale-chromatic": "^1.3.3",
Expand All @@ -52,19 +52,18 @@
"monaco-editor": "^0.33.0",
"oui-dom-events": "^0.2.2",
"oui-dom-utils": "^0.3.8",
"prop-types": "^15.6.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-monaco-editor": "^0.40.0",
"react-redux": "^7.0.0",
"react-router": "^3.0.0",
"react-router-redux": "~4.0.7",
"react-router-redux": "~4.0.8",
"react-router-scroll": "~0.4.1",
"react-runner": "^1.0.3",
"react-runner": "^1.0.5",
"recharts": "^2.15.0",
"redux": "4.0.0",
"redux-thunk": "^2.3.0",
"rimraf": "^2.5.4",
"scroll-behavior": "^0.9.12",
"simple-line-icons": "^2.5.5"
Expand Down
3 changes: 1 addition & 2 deletions src/redux/configureStore.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { applyMiddleware, compose, createStore } from 'redux';
import thunk from 'redux-thunk';
import { routerMiddleware } from 'react-router-redux';
import rootReducer from './rootReducer';

export default function configureStore(initialState = {}, history) {
const middleware = [thunk, routerMiddleware(history)];
const middleware = [routerMiddleware(history)];

const enhancers = [];
// eslint-disable-next-line no-undef
Expand Down
Loading

0 comments on commit 20aca6e

Please sign in to comment.