diff options
| author | Taylor Mullen <[email protected]> | 2025-04-17 18:06:21 -0400 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-17 15:29:34 -0700 |
| commit | cfc697a96d2e716a75e1c3b7f0f34fce81abaf1e (patch) | |
| tree | e06bcba67ca71a874048aa887b17457dbd409bdf /packages/cli/src/ui/components/Footer.tsx | |
| parent | 7928c1727f0b208ed34850cc89bbb36ea3dd23e5 (diff) | |
Run `npm run format`
- Also updated README.md accordingly.
Part of https://b.corp.google.com/issues/411384603
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/Footer.tsx | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index 06e6c681..215a4868 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -2,20 +2,18 @@ import React from 'react'; import { Box, Text } from 'ink'; interface FooterProps { - queryLength: number; + queryLength: number; } const Footer: React.FC<FooterProps> = ({ queryLength }) => { - return ( - <Box marginTop={1} justifyContent="space-between"> - <Box minWidth={15}> - <Text color="gray"> - {queryLength === 0 ? "? for shortcuts" : ""} - </Text> - </Box> - <Text color="blue">Gemini</Text> - </Box> - ); + return ( + <Box marginTop={1} justifyContent="space-between"> + <Box minWidth={15}> + <Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text> + </Box> + <Text color="blue">Gemini</Text> + </Box> + ); }; -export default Footer;
\ No newline at end of file +export default Footer; |
