Small fix for error in room reducer.
This commit is contained in:
@@ -110,7 +110,7 @@ const room = (state = initialState, action) =>
|
||||
|
||||
case 'TOGGLE_JOINED':
|
||||
{
|
||||
const joined = !state.joined;
|
||||
const joined = true;
|
||||
|
||||
return { ...state, joined };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user