diff --git a/frontend/src/reducers/index.jsx b/frontend/src/reducers/index.jsx index bf629539..81d451ed 100644 --- a/frontend/src/reducers/index.jsx +++ b/frontend/src/reducers/index.jsx @@ -24,7 +24,7 @@ const removePartialState = (state, keyId) => { if (keyId in state) { const newState = { ...state }; delete newState[keyId]; - return state; + return newState; } return state; };