From 1296cea7e8ad550aa040bb3a4f04b702452c758d Mon Sep 17 00:00:00 2001 From: Sanskar Jain <52746480+sans-byte@users.noreply.github.com> Date: Sun, 27 Oct 2024 19:39:37 +0530 Subject: [PATCH] Add a helper to the password (#8078) Fix #7601 --------- Co-authored-by: Weiko --- .../modules/auth/sign-in-up/components/SignInUpForm.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/twenty-front/src/modules/auth/sign-in-up/components/SignInUpForm.tsx b/packages/twenty-front/src/modules/auth/sign-in-up/components/SignInUpForm.tsx index c75a35834..bd2af9f8b 100644 --- a/packages/twenty-front/src/modules/auth/sign-in-up/components/SignInUpForm.tsx +++ b/packages/twenty-front/src/modules/auth/sign-in-up/components/SignInUpForm.tsx @@ -27,6 +27,7 @@ import { IconMicrosoft, Loader, MainButton, + StyledText, } from 'twenty-ui'; import { isDefined } from '~/utils/isDefined'; @@ -267,6 +268,12 @@ export const SignInUpForm = () => { disableHotkeys onKeyDown={handleKeyDown} /> + {signInUpMode === SignInUpMode.SignUp && ( + + )} )} />