From 13eb029644b0da401e4b02f1e4b7fa45545fa553 Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Tue, 13 May 2025 22:27:35 +0700 Subject: [PATCH] fix: close room popup on stop share (#8914) Signed-off-by: Alexander Onnikov --- plugins/love-resources/src/components/RoomPopup.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/love-resources/src/components/RoomPopup.svelte b/plugins/love-resources/src/components/RoomPopup.svelte index 58aee3fca4..1714948bf0 100644 --- a/plugins/love-resources/src/components/RoomPopup.svelte +++ b/plugins/love-resources/src/components/RoomPopup.svelte @@ -108,6 +108,7 @@ const newValue = !$isSharingEnabled const audio = newValue && $isShareWithSound await setShare(newValue, audio) + dispatch('close') } async function leave (): Promise {