This commit is contained in:
Kenneth Jannette
2024-01-11 20:35:44 -06:00
parent 46eac91416
commit 4c993e44be
2 changed files with 8 additions and 1 deletions

View File

@@ -119,7 +119,10 @@ const SignupPage = () => {
).map((names, j) => (
<Col key={`row${j}`}>
{names.map((name, i) => (
<Col key={`${name}${i + fieldsChunkSize * j}`} className="mb-3">
<Col
key={`${name}${i + fieldsChunkSize * j}`}
className="signup-mobile-column"
>
<TextInput
name={name}
value={data[name].value}