fix(cli): do not override GOOGLE_CLOUD_PROJECT in Cloud Shell when using Vertex AI (#24455)

Co-authored-by: David Pierce <davidapierce@google.com>
This commit is contained in:
Jack Wotherspoon
2026-04-30 13:52:18 -04:00
committed by GitHub
parent 0f1077076e
commit c94edcd862
14 changed files with 257 additions and 49 deletions
@@ -87,6 +87,7 @@ export interface UIActions {
setActiveBackgroundTaskPid: (pid: number) => void;
setIsBackgroundTaskListOpen: (isOpen: boolean) => void;
setAuthContext: (context: { requiresRestart?: boolean }) => void;
dismissLoginRestart: () => void;
onHintInput: (char: string) => void;
onHintBackspace: () => void;
onHintClear: () => void;
@@ -101,6 +101,8 @@ export interface UIState {
accountSuspensionInfo: AccountSuspensionInfo | null;
isAuthDialogOpen: boolean;
isAwaitingApiKeyInput: boolean;
isAwaitingLoginRestart: boolean;
loginRestartMessage?: string;
apiKeyDefaultValue?: string;
editorError: string | null;
isEditorDialogOpen: boolean;