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,
|
||||
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}>
|
||||
|
|
|
@ -46,6 +46,7 @@ limitations under the License.
|
|||
|
||||
.joinRoomContent h1 {
|
||||
display: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.joinRoomFooter {
|
||||
|
|
Loading…
Add table
Reference in a new issue