Merge pull request #1641 from robintown/invite-modal

Implement the new invite modal designs
This commit is contained in:
Robin
2023-09-28 09:45:03 -04:00
committed by GitHub
19 changed files with 553 additions and 174 deletions

View File

@@ -27,7 +27,7 @@ import { Header, LeftNav, RightNav, RoomHeaderInfo } from "../Header";
import { useLocationNavigation } from "../useLocationNavigation";
import { MatrixInfo, VideoPreview } from "./VideoPreview";
import { MuteStates } from "./MuteStates";
import { ShareButton } from "../button/ShareButton";
import { InviteButton } from "../button/InviteButton";
import {
HangupButton,
MicButton,
@@ -108,7 +108,7 @@ export const LobbyView: FC<Props> = ({
/>
</LeftNav>
<RightNav>
{onShareClick !== null && <ShareButton onClick={onShareClick} />}
{onShareClick !== null && <InviteButton onClick={onShareClick} />}
</RightNav>
</Header>
)}