Prettier
This commit is contained in:
parent
099dcd28c7
commit
9587dd7352
2 changed files with 9 additions and 2 deletions
|
@ -134,7 +134,9 @@ export function RoomHeaderInfo({ roomName, avatarUrl }: RoomHeaderInfo) {
|
||||||
/>
|
/>
|
||||||
<VideoIcon width={16} height={16} />
|
<VideoIcon width={16} height={16} />
|
||||||
</div>
|
</div>
|
||||||
<Subtitle data-testid="roomHeader_roomName" fontWeight="semiBold">{roomName}</Subtitle>
|
<Subtitle data-testid="roomHeader_roomName" fontWeight="semiBold">
|
||||||
|
{roomName}
|
||||||
|
</Subtitle>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -91,7 +91,12 @@ export function RoomAuthView() {
|
||||||
<ErrorMessage error={error} />
|
<ErrorMessage error={error} />
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
)}
|
)}
|
||||||
<Button type="submit" size="lg" disabled={loading} data-testid="joincall_joincall">
|
<Button
|
||||||
|
type="submit"
|
||||||
|
size="lg"
|
||||||
|
disabled={loading}
|
||||||
|
data-testid="joincall_joincall"
|
||||||
|
>
|
||||||
{loading ? t("Loading…") : t("Join call now")}
|
{loading ? t("Loading…") : t("Join call now")}
|
||||||
</Button>
|
</Button>
|
||||||
<div id={recaptchaId} />
|
<div id={recaptchaId} />
|
||||||
|
|
Loading…
Add table
Reference in a new issue