diff options
| author | Allen Hutchison <[email protected]> | 2025-04-18 14:09:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-18 14:09:06 -0700 |
| commit | f51ca774cfc219c22fec77ff47ecb36240ba90d1 (patch) | |
| tree | cc5e6b41e6ad60bc1a34b17fd0ee21d7a534cdcc | |
| parent | 482aeaff102f1f97f67bed04442dbd23a6424f2d (diff) | |
Add a warning about the flickering in iTerm. (#32)
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 7eae3727..25cc21c4 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -126,6 +126,12 @@ const App = ({ directory }: AppProps) => { /> )} + {process.env.TERM_PROGRAM === 'iTerm.app' && ( + <Box marginTop={1}> + <Text dimColor>Note: Flickering may occur in iTerm.</Text> + </Box> + )} + <Footer queryLength={query.length} /> </Box> ); |
