()
| 126 | * @returns A Zod schema for email link authentication form validation. |
| 127 | */ |
| 128 | export function useEmailLinkAuthFormSchema() { |
| 129 | const ui = useUI(); |
| 130 | return useMemo(() => createEmailLinkAuthFormSchema(ui), [ui]); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Gets a memoized Zod schema for phone number form validation. |
no test coverage detected