Skip to content

Commit

Permalink
fix boardsSlice
Browse files Browse the repository at this point in the history
  • Loading branch information
001elijah committed Jun 23, 2023
1 parent c977979 commit 95201ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/Boards/boardsSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const boardsSlice = createSlice({
initialState: [],
extraReducers: builder => {
builder.addCase(getListOfBoards.fulfilled, (state, { payload }) => {
state.boards = payload;
state.push(payload)
});
},
});
Expand Down

0 comments on commit 95201ca

Please sign in to comment.