Fix room name in lobby
This commit is contained in:
parent
f8fbd50ecd
commit
1d35c45d5a
2 changed files with 2 additions and 2 deletions
|
|
@ -250,7 +250,6 @@ function RoomSetupView({
|
||||||
showInspector,
|
showInspector,
|
||||||
roomId,
|
roomId,
|
||||||
}) {
|
}) {
|
||||||
const history = useHistory();
|
|
||||||
const { stream } = useCallFeed(localCallFeed);
|
const { stream } = useCallFeed(localCallFeed);
|
||||||
const videoRef = useMediaStream(stream, true);
|
const videoRef = useMediaStream(stream, true);
|
||||||
|
|
||||||
|
|
@ -270,7 +269,7 @@ function RoomSetupView({
|
||||||
</Header>
|
</Header>
|
||||||
<div className={styles.joinRoom}>
|
<div className={styles.joinRoom}>
|
||||||
<div className={styles.joinRoomContent}>
|
<div className={styles.joinRoomContent}>
|
||||||
<h1>New Call</h1>
|
<h1>{roomName}</h1>
|
||||||
<div className={styles.preview}>
|
<div className={styles.preview}>
|
||||||
{state === GroupCallState.LocalCallFeedUninitialized && (
|
{state === GroupCallState.LocalCallFeedUninitialized && (
|
||||||
<p className={styles.webcamPermissions}>
|
<p className={styles.webcamPermissions}>
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,7 @@ limitations under the License.
|
||||||
|
|
||||||
.joinRoomContent h1 {
|
.joinRoomContent h1 {
|
||||||
display: none;
|
display: none;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.joinRoomFooter {
|
.joinRoomFooter {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue