summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-18 10:53:16 -0400
committerN. Taylor Mullen <[email protected]>2025-04-18 12:41:02 -0400
commite0339993aeae97e0ce77ffa430214b64007b9f6f (patch)
treed48320c7cc66076a42b42de8cee7ff9985474fdc /packages/cli/src/ui/components/Footer.tsx
parentcb303514035440b1631964cad5093a4c80cd3e43 (diff)
Initial auto-fixing of linting errors.
- This is the result of runing `npm lint -- -fix`
Diffstat (limited to 'packages/cli/src/ui/components/Footer.tsx')
-rw-r--r--packages/cli/src/ui/components/Footer.tsx4
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 215a4868..6b069a2f 100644
--- a/packages/cli/src/ui/components/Footer.tsx
+++ b/packages/cli/src/ui/components/Footer.tsx
@@ -5,8 +5,7 @@ interface FooterProps {
queryLength: number;
}
-const Footer: React.FC<FooterProps> = ({ queryLength }) => {
- return (
+const Footer: React.FC<FooterProps> = ({ queryLength }) => (
<Box marginTop={1} justifyContent="space-between">
<Box minWidth={15}>
<Text color="gray">{queryLength === 0 ? '? for shortcuts' : ''}</Text>
@@ -14,6 +13,5 @@ const Footer: React.FC<FooterProps> = ({ queryLength }) => {
<Text color="blue">Gemini</Text>
</Box>
);
-};
export default Footer;