summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/Footer.tsx
diff options
context:
space:
mode:
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;