From 833198b03377601bdb18a6b2f1109e2279304c8b Mon Sep 17 00:00:00 2001 From: Damon Blais Date: Wed, 21 Feb 2024 15:30:02 -0800 Subject: [PATCH] refactor(LoginButtons): Add return type annotation to LoginButtons component --- frontend/src/components/LoginButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/LoginButtons.tsx b/frontend/src/components/LoginButtons.tsx index d355afa..549e514 100644 --- a/frontend/src/components/LoginButtons.tsx +++ b/frontend/src/components/LoginButtons.tsx @@ -7,7 +7,7 @@ type Props = { onDontClick?: () => void } -export default function LoginButtons(props: Props) { +export default function LoginButtons(props: Props): JSX.Element { const { onDontClick } = props return (