Skip to content

Commit

Permalink
Fix missing logo at sign-in-up (twentyhq#5525)
Browse files Browse the repository at this point in the history
  • Loading branch information
martmull committed May 22, 2024
1 parent 944b2b0 commit 2386191
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/twenty-front/src/pages/auth/SignInUp.tsx
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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 = () => {
Expand All @@ -36,6 +38,9 @@ export const SignInUp = () => {

return (
<>
<AnimatedEaseIn>
<Logo />
</AnimatedEaseIn>
<Title animate>{title}</Title>
<SignInUpForm />
</>
Expand Down

0 comments on commit 2386191

Please sign in to comment.