Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions packages/cli/src/ui/AppContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,6 @@ Logging in with Google... Please restart Gemini CLI to continue.
isEditorDialogOpen ||
isSettingsDialogOpen ||
isFolderTrustDialogOpen ||
isAuthenticating ||
showPrivacyNotice;
if (anyDialogOpen) {
return;
Expand Down Expand Up @@ -932,9 +931,6 @@ Logging in with Google... Please restart Gemini CLI to continue.
) {
handleSlashCommand('/ide status');
} else if (keyMatchers[Command.QUIT](key)) {
if (isAuthenticating) {
return;
}
if (!ctrlCPressedOnce) {
cancelOngoingRequest?.();
}
Expand Down Expand Up @@ -968,7 +964,6 @@ Logging in with Google... Please restart Gemini CLI to continue.
setCtrlDPressedOnce,
ctrlDTimerRef,
handleSlashCommand,
isAuthenticating,
cancelOngoingRequest,
isThemeDialogOpen,
isAuthDialogOpen,
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/ui/components/DialogManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const DialogManager = () => {
return (
<AuthInProgress
onTimeout={() => {
/* This is now handled in AppContainer */
uiActions.onAuthError('Authentication cancelled.');
}}
/>
);
Expand Down
Loading