@@ -43,7 +43,7 @@ export const InviteModal: FC<Props> = ({ roomAlias, roomId, ...rest }) => {
|
|||||||
<p>{t("Copy and share this call link")}</p>
|
<p>{t("Copy and share this call link")}</p>
|
||||||
<CopyButton
|
<CopyButton
|
||||||
className={styles.copyButton}
|
className={styles.copyButton}
|
||||||
value={getRoomUrl(roomAlias ?? roomId, roomSharedKey)}
|
value={getRoomUrl(roomAlias ?? roomId, roomSharedKey ?? undefined)}
|
||||||
data-testid="modal_inviteLink"
|
data-testid="modal_inviteLink"
|
||||||
/>
|
/>
|
||||||
</ModalContent>
|
</ModalContent>
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ export const LobbyView: FC<Props> = ({
|
|||||||
variant="secondaryCopy"
|
variant="secondaryCopy"
|
||||||
value={getRoomUrl(
|
value={getRoomUrl(
|
||||||
matrixInfo.roomAlias ?? matrixInfo.roomId,
|
matrixInfo.roomAlias ?? matrixInfo.roomId,
|
||||||
roomSharedKey
|
roomSharedKey ?? undefined
|
||||||
)}
|
)}
|
||||||
className={styles.copyButton}
|
className={styles.copyButton}
|
||||||
copiedMessage={t("Call link copied")}
|
copiedMessage={t("Call link copied")}
|
||||||
|
|||||||
Reference in New Issue
Block a user