diff --git a/apps/studio/components/interfaces/SignIn/ForgotPasswordWizard.tsx b/apps/studio/components/interfaces/SignIn/ForgotPasswordWizard.tsx index 11f39cba3a..2cc021b1ff 100644 --- a/apps/studio/components/interfaces/SignIn/ForgotPasswordWizard.tsx +++ b/apps/studio/components/interfaces/SignIn/ForgotPasswordWizard.tsx @@ -10,6 +10,7 @@ import { useResetPasswordMutation } from 'data/misc/reset-password-mutation' import { BASE_PATH } from 'lib/constants' import { auth } from 'lib/gotrue' import { Button, Form_Shadcn_, FormControl_Shadcn_, FormField_Shadcn_, Input_Shadcn_ } from 'ui' +import { Admonition } from 'ui-patterns' import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' const forgotPasswordSchema = z.object({ @@ -78,6 +79,11 @@ const ConfirmResetCodeForm = ({ email }: { email: string }) => { className="flex flex-col pt-4 space-y-4" onSubmit={codeForm.handleSubmit(onCodeEntered)} > + { )}
  • - Force sign out and clear cookies + + Force sign out and clear cookies +
  • { @@ -23,7 +24,7 @@ const ForgotPasswordPage: NextPageWithLayout = () => { ForgotPasswordPage.getLayout = (page) => ( {page}