File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ export function GroupCallView({
144144 toggleLocalVideoMuted = { toggleLocalVideoMuted }
145145 toggleMicrophoneMuted = { toggleMicrophoneMuted }
146146 roomId = { roomId }
147+ isEmbedded = { isEmbedded }
147148 />
148149 ) ;
149150 }
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export function LobbyView({
4242 toggleLocalVideoMuted,
4343 toggleMicrophoneMuted,
4444 roomId,
45+ isEmbedded,
4546} ) {
4647 const { stream } = useCallFeed ( localCallFeed ) ;
4748 const {
@@ -122,11 +123,13 @@ export function LobbyView({
122123 Copy call link and join later
123124 </ CopyButton >
124125 </ div >
125- < Body className = { styles . joinRoomFooter } >
126- < Link color = "primary" to = "/" >
127- Take me Home
128- </ Link >
129- </ Body >
126+ { ! isEmbedded && (
127+ < Body className = { styles . joinRoomFooter } >
128+ < Link color = "primary" to = "/" >
129+ Take me Home
130+ </ Link >
131+ </ Body >
132+ ) }
130133 </ div >
131134 </ div >
132135 ) ;
You can’t perform that action at this time.
0 commit comments