fix field.name issue

This commit is contained in:
Karol Wypchlo 2021-02-08 17:34:38 +01:00
parent 339cadf08e
commit 879a3e085f
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export default function Registration({ flow }) {
<div>
<input
id={field.name}
name={`['${field.name}']`}
name={field.name}
type={field.type}
autoComplete={field.autoComplete}
required={field.required}