From 7d647bef25f833af732857103238d5fd0c957443 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Wed, 25 Feb 2026 08:18:45 +0700 Subject: [PATCH] fix: disable context picker mode after selecting a scope When a context scope is picked via the pipette, the picker mode now turns off automatically since the selection is done and shows as a chip. Co-Authored-By: Claude Opus 4.6 --- frontend/app/composables/usePilotChat.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/composables/usePilotChat.ts b/frontend/app/composables/usePilotChat.ts index 69a1576..5cd999f 100644 --- a/frontend/app/composables/usePilotChat.ts +++ b/frontend/app/composables/usePilotChat.ts @@ -271,6 +271,7 @@ export function usePilotChat(opts: { return; } contextScopes.value = [...contextScopes.value, scope]; + contextPickerEnabled.value = false; } function removeContextScope(scope: ContextScope) {