Skip to content

Commit

Permalink
remove extra package
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniw committed Feb 8, 2024
1 parent 0b1e3da commit 1f10433
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
1 change: 0 additions & 1 deletion frontend/public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@
"redux-query": "3.3.1",
"redux-query-interface-superagent": "3.3.1",
"redux-query-react": "3.3.1",
"redux-thunk": "^3.1.0",
"reselect": "4.1.5",
"sanctuary": "0.13.2",
"sass": "1.49.11",
Expand Down
3 changes: 1 addition & 2 deletions frontend/public/src/store/configureStore.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { compose, createStore, applyMiddleware } from "redux"
import { createLogger } from "redux-logger"
import { thunk } from "redux-thunk"
import { queryMiddleware } from "redux-query"

import { makeRequest } from "./network_interface"
Expand All @@ -10,7 +9,7 @@ import { getEntities, getQueries } from "../lib/queries/util"
// Setup middleware
export default function configureStore(initialState: Object) {
const COMMON_MIDDLEWARE = [
queryMiddleware(makeRequest, getQueries, getEntities), thunk
queryMiddleware(makeRequest, getQueries, getEntities)
]

// Store factory configuration
Expand Down
10 changes: 0 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13971,7 +13971,6 @@ __metadata:
redux-query: 3.3.1
redux-query-interface-superagent: 3.3.1
redux-query-react: 3.3.1
redux-thunk: ^3.1.0
reselect: 4.1.5
sanctuary: 0.13.2
sass: 1.49.11
Expand Down Expand Up @@ -18104,15 +18103,6 @@ __metadata:
languageName: node
linkType: hard

"redux-thunk@npm:^3.1.0":
version: 3.1.0
resolution: "redux-thunk@npm:3.1.0"
peerDependencies:
redux: ^5.0.0
checksum: bea96f8233975aad4c9f24ca1ffd08ac7ec91eaefc26e7ba9935544dc55d7f09ba2aa726676dab53dc79d0c91e8071f9729cddfea927f4c41839757d2ade0f50
languageName: node
linkType: hard

"redux@npm:4.0.0":
version: 4.0.0
resolution: "redux@npm:4.0.0"
Expand Down

0 comments on commit 1f10433

Please sign in to comment.