File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export function createSignInAuthFormSchema(ui: FirebaseUIConfiguration) {
30
30
} ) ;
31
31
}
32
32
33
- export function createForgotPasswordFormSchema ( ui : FirebaseUIConfiguration ) {
33
+ export function createForgotPasswordAuthFormSchema ( ui : FirebaseUIConfiguration ) {
34
34
return z . object ( {
35
35
email : z . string ( ) . email ( { message : getTranslation ( ui , "errors" , "invalidEmail" ) } ) ,
36
36
} ) ;
@@ -56,6 +56,6 @@ export function createPhoneFormSchema(ui: FirebaseUIConfiguration) {
56
56
}
57
57
58
58
export type SignInAuthFormSchema = z . infer < ReturnType < typeof createSignInAuthFormSchema > > ;
59
- export type ForgotPasswordFormSchema = z . infer < ReturnType < typeof createForgotPasswordFormSchema > > ;
59
+ export type ForgotPasswordAuthFormSchema = z . infer < ReturnType < typeof createForgotPasswordAuthFormSchema > > ;
60
60
export type EmailLinkFormSchema = z . infer < ReturnType < typeof createEmailLinkFormSchema > > ;
61
61
export type PhoneFormSchema = z . infer < ReturnType < typeof createPhoneFormSchema > > ;
You can’t perform that action at this time.
0 commit comments