From e0339993aeae97e0ce77ffa430214b64007b9f6f Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Fri, 18 Apr 2025 10:53:16 -0400 Subject: Initial auto-fixing of linting errors. - This is the result of runing `npm lint -- -fix` --- packages/cli/src/ui/components/Footer.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'packages/cli/src/ui/components/Footer.tsx') 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 = ({ queryLength }) => { - return ( +const Footer: React.FC = ({ queryLength }) => ( {queryLength === 0 ? '? for shortcuts' : ''} @@ -14,6 +13,5 @@ const Footer: React.FC = ({ queryLength }) => { Gemini ); -}; export default Footer; -- cgit v1.2.3