diff --git a/app/src/reducers/room.js b/app/src/reducers/room.js index 747d316..c4b29fb 100644 --- a/app/src/reducers/room.js +++ b/app/src/reducers/room.js @@ -110,7 +110,7 @@ const room = (state = initialState, action) => case 'TOGGLE_JOINED': { - const joined = !state.joined; + const joined = true; return { ...state, joined }; }