Small fix for error in room reducer.
parent
e674daaf1a
commit
587f185f09
|
|
@ -110,7 +110,7 @@ const room = (state = initialState, action) =>
|
|||
|
||||
case 'TOGGLE_JOINED':
|
||||
{
|
||||
const joined = !state.joined;
|
||||
const joined = true;
|
||||
|
||||
return { ...state, joined };
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue