From 30412255d7d332159b4d555b770a6121c073e4cc Mon Sep 17 00:00:00 2001 From: phoenixpereira Date: Sat, 24 Feb 2024 11:44:47 +1030 Subject: [PATCH] fix: make button component valid after merge --- src/app/(account)/signin/page.tsx | 3 +-- src/components/Button.tsx | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/(account)/signin/page.tsx b/src/app/(account)/signin/page.tsx index 75f5b79b..64d469f3 100644 --- a/src/app/(account)/signin/page.tsx +++ b/src/app/(account)/signin/page.tsx @@ -106,8 +106,7 @@ export default function SignInPage() { size="small" > Continue with Google - Forgot password? - +
diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 1df6e939..1339ac22 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -26,10 +26,6 @@ const Button = ({ font, size = 'base', }: ButtonProps) => { - font?: string; -} - -const Button = ({ children, colour, href, onClick, width, type, loading, font }: ButtonProps) => { const isAnchor = !!href; const Component = isAnchor ? 'a' : 'button';