Small fix for error in room reducer.

auto_join_3.3
Håvar Aambø Fosstveit 2020-03-20 21:14:43 +01:00
parent e674daaf1a
commit 587f185f09
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ const room = (state = initialState, action) =>
case 'TOGGLE_JOINED': case 'TOGGLE_JOINED':
{ {
const joined = !state.joined; const joined = true;
return { ...state, joined }; return { ...state, joined };
} }