diff options
| author | Hiroaki Mitsuyoshi <[email protected]> | 2025-08-16 00:46:45 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-15 15:46:45 +0000 |
| commit | 72195d55538c11a2cf6e24e061d526395b552fd3 (patch) | |
| tree | e003a19b5e853e388907ee155ab3f4faf7011acb /packages/cli/src/ui/App.tsx | |
| parent | 8f2fa5a537b048c3d76c581279c8cd4ae52688b2 (diff) | |
fix(ui): Fix hang in chat save confirmation dialog (#6312)
Co-authored-by: Bryan Morgan <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 2c17315f..70ee0730 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -970,6 +970,7 @@ const App = ({ config, settings, startupWarnings = [], version }: AppProps) => { {confirmationRequest.prompt} <Box paddingY={1}> <RadioButtonSelect + isFocused={!!confirmationRequest} items={[ { label: 'Yes', value: true }, { label: 'No', value: false }, |
