Fix room name in lobby

This commit is contained in:
Robert Long
2021-12-13 15:30:55 -08:00
parent f8fbd50ecd
commit 1d35c45d5a
2 changed files with 2 additions and 2 deletions

View File

@@ -250,7 +250,6 @@ function RoomSetupView({
showInspector,
roomId,
}) {
const history = useHistory();
const { stream } = useCallFeed(localCallFeed);
const videoRef = useMediaStream(stream, true);
@@ -270,7 +269,7 @@ function RoomSetupView({
</Header>
<div className={styles.joinRoom}>
<div className={styles.joinRoomContent}>
<h1>New Call</h1>
<h1>{roomName}</h1>
<div className={styles.preview}>
{state === GroupCallState.LocalCallFeedUninitialized && (
<p className={styles.webcamPermissions}>

View File

@@ -46,6 +46,7 @@ limitations under the License.
.joinRoomContent h1 {
display: none;
margin: 0;
}
.joinRoomFooter {