Fix typescript syntax

This commit is contained in:
David Baker 2022-07-14 13:11:47 +01:00
parent c1e45c4a30
commit 1eab957d85

View File

@ -24,7 +24,7 @@ import { useRecaptcha } from "../auth/useRecaptcha";
export interface UseRegisterPasswordlessUserType { export interface UseRegisterPasswordlessUserType {
privacyPolicyUrl: string; privacyPolicyUrl: string;
registerPasswordlessUser: (string) => Promise<void>; registerPasswordlessUser: (displayName: string) => Promise<void>;
recaptchaId: string; recaptchaId: string;
} }