Fix signature on props

This commit is contained in:
Jackson Harper
2024-04-01 11:13:57 +08:00
parent 822fcb1e74
commit 47d6f16961

View File

@ -127,7 +127,7 @@ const SignUpForm = (): JSX.Element => {
}
type RecaptchaProps = {
setRecaptchaToken: (string) => void
setRecaptchaToken: (token: string) => void
}
const Recaptcha = (props: RecaptchaProps): JSX.Element => {