diff --git a/src/frontend/src/features/rooms/routes/Room.tsx b/src/frontend/src/features/rooms/routes/Room.tsx index eef3184a..eb4a531a 100644 --- a/src/frontend/src/features/rooms/routes/Room.tsx +++ b/src/frontend/src/features/rooms/routes/Room.tsx @@ -10,7 +10,7 @@ import { Conference } from '../components/Conference' import { Join } from '../components/Join' export const Room = () => { - const { user, isLoggedIn } = useUser() + const { isLoggedIn } = useUser() const { userChoices: existingUserChoices } = usePersistentUserChoices() const [userConfig, setUserConfig] = useState(null) @@ -39,7 +39,6 @@ export const Room = () => { mode={mode} userConfig={{ ...existingUserChoices, - ...(skipJoinScreen ? { username: user?.email as string } : {}), ...userConfig, }} />