diff options
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index d6813387..cd8295f7 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -39,8 +39,12 @@ export const App = ({ config, cliVersion }: AppProps) => { const { elapsedTime, currentLoadingPhrase } = useLoadingIndicator(streamingState); - const { isThemeDialogOpen, openThemeDialog, handleThemeSelect } = - useThemeCommand(); + const { + isThemeDialogOpen, + openThemeDialog, + handleThemeSelect, + handleThemeHighlight, + } = useThemeCommand(); useStartupWarnings(setStartupWarnings); useInitializationErrorEffect(initError, history, setHistory); @@ -134,7 +138,10 @@ export const App = ({ config, cliVersion }: AppProps) => { )} {isThemeDialogOpen ? ( - <ThemeDialog onSelect={handleThemeSelect} /> + <ThemeDialog + onSelect={handleThemeSelect} + onHighlight={handleThemeHighlight} + /> ) : ( <> <Box flexDirection="column"> |
