diff options
| author | Taylor Mullen <[email protected]> | 2025-04-18 19:09:41 -0400 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-18 19:14:36 -0400 |
| commit | 40e11e053c1cf304255c21f91e950c520285c6c5 (patch) | |
| tree | a2897d6236641d30b7a1014466967edf6e298ba1 /packages/cli/src/ui/components/Footer.tsx | |
| parent | 2a850ed0511033ffa88b450643d79bb47ae18693 (diff) | |
Fix remaining tslint errors (YAY).
- Also updated ci.yml to ensure that linting failures will break the build.
Fully fixes 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 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/cli/src/ui/components/Footer.tsx b/packages/cli/src/ui/components/Footer.tsx index f2afc1bd..e018780c 100644 --- a/packages/cli/src/ui/components/Footer.tsx +++ b/packages/cli/src/ui/components/Footer.tsx @@ -5,7 +5,7 @@ interface FooterProps { queryLength: number; } -const Footer: React.FC<FooterProps> = ({ queryLength }) => ( +export const Footer: React.FC<FooterProps> = ({ queryLength }) => ( <Box marginTop={1} justifyContent="space-between"> <Box minWidth={15}> <Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text> @@ -13,5 +13,3 @@ const Footer: React.FC<FooterProps> = ({ queryLength }) => ( <Text color="blue">Gemini</Text> </Box> ); - -export default Footer; |
