Skip to content

Commit

Permalink
Merge pull request #89 from rekcurd/fix/remove-redux-thunk
Browse files Browse the repository at this point in the history
Merged
  • Loading branch information
keigohtr authored Apr 25, 2019
2 parents ed85815 + eef6b53 commit aa57b23
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"react-router-dom": "^4.3.1",
"reactstrap": "^6.1.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"ts-loader": "^4.4.1",
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as React from 'react'
import { render } from 'react-dom'
import { Provider } from 'react-redux'
import { createStore, combineReducers, compose, applyMiddleware } from 'redux'
import thunk from 'redux-thunk'
import {
saveProjectReducer,
saveDataServerReducer,
Expand Down Expand Up @@ -48,7 +47,7 @@ import { App } from './components/App'
import './assets/koromo.css'
import './assets/style'

const store = compose(applyMiddleware(thunk))(createStore)(
const store = createStore(
combineReducers({
saveProjectReducer,
saveDataServerReducer,
Expand Down
5 changes: 0 additions & 5 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5701,11 +5701,6 @@ reduce-function-call@^1.0.1:
dependencies:
balanced-match "^0.4.2"

redux-thunk@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.3.0.tgz#51c2c19a185ed5187aaa9a2d08b666d0d6467622"
integrity sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==

redux@^3.6.0:
version "3.7.2"
resolved "https://registry.yarnpkg.com/redux/-/redux-3.7.2.tgz#06b73123215901d25d065be342eb026bc1c8537b"
Expand Down

0 comments on commit aa57b23

Please sign in to comment.