diff --git a/frontend/app/(auth)/login/components/GoogleLogin/index.tsx b/frontend/app/(auth)/login/components/GoogleLogin/index.tsx index 90586de71..4009efbf9 100644 --- a/frontend/app/(auth)/login/components/GoogleLogin/index.tsx +++ b/frontend/app/(auth)/login/components/GoogleLogin/index.tsx @@ -10,7 +10,7 @@ export const GoogleLoginButton = () => { diff --git a/frontend/lib/components/NavBar/components/NavItems/components/AuthButtons.tsx b/frontend/lib/components/NavBar/components/NavItems/components/AuthButtons.tsx index 76ee6362b..befd06b24 100644 --- a/frontend/lib/components/NavBar/components/NavItems/components/AuthButtons.tsx +++ b/frontend/lib/components/NavBar/components/NavItems/components/AuthButtons.tsx @@ -13,10 +13,19 @@ export const AuthButtons = (): JSX.Element => { ); } + else if (pathname === "/login") { + return ( + + + + ) + } else { + return ( + + + + ); + } - return ( - - - - ); + };