We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd63ce3 commit 15a7e68Copy full SHA for 15a7e68
1 file changed
src/components/HostPanel.tsx
@@ -9,7 +9,8 @@ const HostPanel: React.FC<HostPanelProps> = ({ roomId, guestCount }) => {
9
if (!roomId) return null;
10
11
const copyRoomId = () => {
12
- navigator.clipboard.writeText(roomId);
+ const url = `${window.location.origin}/?mode=join&room=${roomId}`;
13
+ navigator.clipboard.writeText(url);
14
};
15
16
return (
0 commit comments