From 2f51cba03afbc55e3f21f6b911386a8766e1e408 Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Tue, 14 Oct 2025 22:44:37 +0200 Subject: [PATCH] Hide video overlays if there is a connection issue --- ui/src/components/WebRTCVideo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/WebRTCVideo.tsx b/ui/src/components/WebRTCVideo.tsx index 65d39971..1ce25fe2 100644 --- a/ui/src/components/WebRTCVideo.tsx +++ b/ui/src/components/WebRTCVideo.tsx @@ -538,7 +538,7 @@ export default function WebRTCVideo({ hasConnectionIssues }: { hasConnectionIssu }, )} /> - {peerConnection?.connectionState == "connected" && ( + {peerConnection?.connectionState == "connected" && !hasConnectionIssues && (