Skip to content

Commit

Permalink
fix: add lobby
Browse files Browse the repository at this point in the history
  • Loading branch information
edalholt committed Sep 8, 2023
1 parent 8fde88b commit fb13321
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/pages/AssemblyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export function AssemblyLobby() {
LimitedVoteType | undefined
>(undefined);
const [voted, setVoted] = useState<boolean>(false);
const { lastMessage } = useWebSocket(import.meta.env.VITE_SOCKET_URL);
const { lastMessage } = useWebSocket(
import.meta.env.VITE_SOCKET_URL + "/lobby"
);
const { checkedIn, setCheckedIn } = useContext(
checkedInState
) as checkedInType;
Expand Down

0 comments on commit fb13321

Please sign in to comment.