feat(auth): handle auth flow errors gracefully (#1256)

This commit is contained in:
N. Taylor Mullen
2025-06-20 01:30:06 -07:00
committed by GitHub
parent 4d9e258a1e
commit 4e69ba3bbe
3 changed files with 55 additions and 19 deletions

View File

@@ -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}