From 2386191d8e39d6dbde711295e8187ace7864b356 Mon Sep 17 00:00:00 2001 From: martmull Date: Wed, 22 May 2024 09:55:29 +0200 Subject: [PATCH] Fix missing logo at sign-in-up (#5525) ### Before ![image](https://github.com/twentyhq/twenty/assets/29927851/91f94c5f-e337-4163-b858-3358032a12bd) ### After ![image](https://github.com/twentyhq/twenty/assets/29927851/77b88ea1-514a-4471-a28d-4c989cc5d9c4) --- packages/twenty-front/src/pages/auth/SignInUp.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/twenty-front/src/pages/auth/SignInUp.tsx b/packages/twenty-front/src/pages/auth/SignInUp.tsx index f786fb5432c5..719e665baf7c 100644 --- a/packages/twenty-front/src/pages/auth/SignInUp.tsx +++ b/packages/twenty-front/src/pages/auth/SignInUp.tsx @@ -1,6 +1,7 @@ import { useMemo } from 'react'; import { useRecoilValue } from 'recoil'; +import { Logo } from '@/auth/components/Logo'; import { Title } from '@/auth/components/Title'; import { SignInUpForm } from '@/auth/sign-in-up/components/SignInUpForm'; import { @@ -10,6 +11,7 @@ import { } from '@/auth/sign-in-up/hooks/useSignInUp'; import { useSignInUpForm } from '@/auth/sign-in-up/hooks/useSignInUpForm'; import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState'; +import { AnimatedEaseIn } from '@/ui/utilities/animation/components/AnimatedEaseIn'; import { isDefined } from '~/utils/isDefined'; export const SignInUp = () => { @@ -36,6 +38,9 @@ export const SignInUp = () => { return ( <> + + + {title}