From 1d35c45d5a9b7db9ffcaea0b2794cc9583ecee2c Mon Sep 17 00:00:00 2001 From: Robert Long Date: Mon, 13 Dec 2021 15:30:55 -0800 Subject: [PATCH] Fix room name in lobby --- src/Room.jsx | 3 +-- src/Room.module.css | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Room.jsx b/src/Room.jsx index dfb366cd..9bc589dd 100644 --- a/src/Room.jsx +++ b/src/Room.jsx @@ -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({
-

New Call

+

{roomName}

{state === GroupCallState.LocalCallFeedUninitialized && (

diff --git a/src/Room.module.css b/src/Room.module.css index bdee2f1f..3c31183f 100644 --- a/src/Room.module.css +++ b/src/Room.module.css @@ -46,6 +46,7 @@ limitations under the License. .joinRoomContent h1 { display: none; + margin: 0; } .joinRoomFooter {