Skip to content

Commit

Permalink
Remove DISABLE_COMPLEMENTARY_AREA handling in interface reducer
Browse files Browse the repository at this point in the history
  • Loading branch information
talldan committed May 13, 2022
1 parent 7f7b5a4 commit 0c23e93
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/interface/src/store/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ export function complementaryAreas( state = {}, action ) {
[ scope ]: area,
};
}
case 'DISABLE_COMPLEMENTARY_AREA': {
const { scope } = action;
const newState = { ...state };
delete newState[ scope ];
return newState;
}
}

return state;
Expand Down

0 comments on commit 0c23e93

Please sign in to comment.