From db27917629155817a47e8208feefbfbd31db0a37 Mon Sep 17 00:00:00 2001 From: Alan Trebugeais Date: Thu, 7 May 2026 11:54:46 +0200 Subject: [PATCH] fix autonomous open mode --- src/components/launch/SourceSelector.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/launch/SourceSelector.tsx b/src/components/launch/SourceSelector.tsx index f642953b..a7c6ee40 100644 --- a/src/components/launch/SourceSelector.tsx +++ b/src/components/launch/SourceSelector.tsx @@ -309,10 +309,10 @@ export const SourceSelector = React.memo(function SourceSelector({ // In autonomous mode, we might want to start open useEffect(() => { - if (isAutonomous && !internalOpen) { + if (isAutonomous) { setInternalOpen(true); } - }, [isAutonomous, internalOpen]); + }, [isAutonomous]); const trigger = children ? ( React.isValidElement(children) ? (