Small fix for error in room reducer.

This commit is contained in:
Håvar Aambø Fosstveit
2020-03-20 21:14:43 +01:00
parent e674daaf1a
commit 587f185f09
+1 -1
View File
@@ -110,7 +110,7 @@ const room = (state = initialState, action) =>
case 'TOGGLE_JOINED':
{
const joined = !state.joined;
const joined = true;
return { ...state, joined };
}