I’m trying to get the roomId from firestore but I’m stuck with this problem since last week I have tried different es6 syntax to overcome with but no result. Below I have provided the code it shows the error on selectRoomId
JavaScript
x
18
18
1
import { createSlice } from '@reduxjs/toolkit';
2
3
export const appSlice = createSlice({
4
name: 'app',
5
initialState: {
6
roomId: null
7
},
8
reducers: {
9
enterRoom: (state, action) => {
10
state.roomId = action.payload.roomId;
11
},
12
},
13
});
14
15
export const { enterRoom } = appSlice.actions;
16
export const selectRoomId = state => state.app.roomId;
17
export default appSlice.reducer;
18
Advertisement
Answer
Spread your state and update the roomId only
JavaScript
1
7
1
reducers: {
2
enterRoom: (state, action) => {
3
state,
4
roomId: action?.payload?.roomId;
5
},
6
},
7