make routing form full width (#8215)

pull/8211/head^2
Peer Richelsen 2023-04-12 04:09:04 +02:00 committed by GitHub
parent c0f7c40bec
commit 46611fdf77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 24 deletions

View File

@ -44,7 +44,6 @@ export default function FormInputFields(props: Props) {
{field.label}
</label>
</div>
<div className="flex rounded-sm">
<Component
value={response[field.id]?.value}
placeholder={field.placeholder ?? ""}
@ -68,7 +67,6 @@ export default function FormInputFields(props: Props) {
}}
/>
</div>
</div>
);
})}
</>