From 448587bc2db55125bff355508b60f48ba3fdaad6 Mon Sep 17 00:00:00 2001 From: Wes Date: Sun, 16 Aug 2026 12:42:57 -0600 Subject: [PATCH] fix(desktop): propagate huddle sidebar navigation Return the huddle route promise through the sidebar handler so deferred navigation can clear its destination skeleton if the route commit fails. Co-authored-by: Carl Signed-off-by: Wes --- desktop/src/app/useHuddlePresentation.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/desktop/src/app/useHuddlePresentation.ts b/desktop/src/app/useHuddlePresentation.ts index d94226ca4..475f8f932 100644 --- a/desktop/src/app/useHuddlePresentation.ts +++ b/desktop/src/app/useHuddlePresentation.ts @@ -316,8 +316,7 @@ export function useHuddlePresentation() { isHuddleDrawerOpen && channelId === activeHuddleChannelIdRef.current ) { - showHuddleInMainApp(channelId); - return; + return showHuddleInMainApp(channelId); } return goChannel(channelId); },