Skip to content

Commit 31bc80c

Browse files
committed
chore: Linting fix
1 parent ef65977 commit 31bc80c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react/src/auth/forms/sign-up-auth-form.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ export function SignUpAuthForm({ onBackToSignInClick, onSignUp }: SignUpAuthForm
104104
</fieldset>
105105
{requireDisplayName ? (
106106
<fieldset>
107-
<form.AppField name="displayName" children={(field) => <field.Input label={getTranslation(ui, "labels", "displayName")} />} />
107+
<form.AppField name="displayName">
108+
{(field) => <field.Input label={getTranslation(ui, "labels", "displayName")} />}
109+
</form.AppField>
108110
</fieldset>
109111
) : null}
110112
<Policies />

0 commit comments

Comments
 (0)