This commit is contained in:
2025-05-05 16:12:55 -03:00
parent 5901739b90
commit e274760106

View File

@@ -57,16 +57,6 @@ export default function Contact({ url }) {
<input type="hidden" {...register("solution")} />
<input type="hidden" defaultValue={url} {...register("url")} />
<Control>
<Input as="select" disabled {...register("solution")}>
{solutions.map((text, idx) => (
<option value={text} key={idx}>
{text}
</option>
))}
</Input>
</Control>
<Control>
<Input
aria-invalid={!!formState.errors?.name}