Skip to content

Commit

Permalink
fix: Combine filters
Browse files Browse the repository at this point in the history
  • Loading branch information
d-beezee committed Mar 13, 2024
1 parent f1f3bdc commit 16bd70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/campaigns/selection/selectionSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const selectionSlice = createSlice({
};
}>
) {
state.filters = action.payload;
state.filters = { ...state.filters, ...action.payload };
},
reset() {
return initialState;
Expand Down

0 comments on commit 16bd70d

Please sign in to comment.