Skip to content

Commit

Permalink
-client: Fix "DNS rewrites" adding an item error
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemBaskal committed May 29, 2020
1 parent 72f253f commit dddcbe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/reducers/rewrites.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const rewrites = handleActions(
[actions.addRewriteSuccess]: (state, { payload }) => {
const newState = {
...state,
list: [...state.list, ...payload],
list: [...state.list, payload],
processingAdd: false,
};
return newState;
Expand Down

0 comments on commit dddcbe7

Please sign in to comment.