fixed js code

This commit is contained in:
Hope87
2021-07-01 14:25:17 +03:00
parent e90414b6b9
commit edd01168a5
5 changed files with 47 additions and 46 deletions

View File

@ -24,8 +24,8 @@ export const outstaffingSlice = createSlice({
selectedTab: (state, action) => {
state.selectedTab = action.payload;
},
selectedItem: (state, action) => {
state.selectedItem = action.payload;
selectedItems: (state, action) => {
state.selectedItems = action.payload;
},
},
});