diff options
| author | N. Taylor Mullen <[email protected]> | 2025-06-20 01:30:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-20 01:30:06 -0700 |
| commit | 4e69ba3bbe2dd1b78a9ee744b892b8b199790a44 (patch) | |
| tree | 13a5a7f99ba4a7b99c465c21025232f9207b2f33 /packages/cli/src/ui/App.tsx | |
| parent | 4d9e258a1e2f60e4d69a7888fb1e4b86c5a314ff (diff) | |
feat(auth): handle auth flow errors gracefully (#1256)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index c481ebd3..b89a20ed 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -587,11 +587,6 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => { </Box> ) : isAuthDialogOpen ? ( <Box flexDirection="column"> - {authError && ( - <Box marginBottom={1}> - <Text color={Colors.AccentRed}>{authError}</Text> - </Box> - )} <AuthDialog onSelect={handleAuthSelect} onHighlight={handleAuthHighlight} |
