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 @@ -43,7 +43,7 @@ export function createForgotPasswordAuthFormSchema(ui: FirebaseUIConfiguration)
43
43
} ) ;
44
44
}
45
45
46
- export function createEmailLinkFormSchema ( ui : FirebaseUIConfiguration ) {
46
+ export function createEmailLinkAuthFormSchema ( ui : FirebaseUIConfiguration ) {
47
47
return z . object ( {
48
48
email : z . string ( ) . email ( { message : getTranslation ( ui , "errors" , "invalidEmail" ) } ) ,
49
49
} ) ;
@@ -65,5 +65,5 @@ export function createPhoneFormSchema(ui: FirebaseUIConfiguration) {
65
65
export type SignInAuthFormSchema = z . infer < ReturnType < typeof createSignInAuthFormSchema > > ;
66
66
export type SignUpAuthFormSchema = z . infer < ReturnType < typeof createSignUpAuthFormSchema > > ;
67
67
export type ForgotPasswordAuthFormSchema = z . infer < ReturnType < typeof createForgotPasswordAuthFormSchema > > ;
68
- export type EmailLinkFormSchema = z . infer < ReturnType < typeof createEmailLinkFormSchema > > ;
68
+ export type EmailLinkAuthFormSchema = z . infer < ReturnType < typeof createEmailLinkAuthFormSchema > > ;
69
69
export type PhoneFormSchema = z . infer < ReturnType < typeof createPhoneFormSchema > > ;
You can’t perform that action at this time.
0 commit comments