Skip to content

Commit

Permalink
refactor: remove input wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
anialesniak committed Aug 14, 2023
1 parent 7260c53 commit 3275a5b
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ interface ParentTicketFieldProps {
export function ParentTicketField({ field }: ParentTicketFieldProps): JSX.Element {
const { value, name } = field;
return (
<>
<input
type="hidden"
name={name}
value={value}
/>
</>
<input
type="hidden"
name={name}
value={value}
/>
);
}

0 comments on commit 3275a5b

Please sign in to comment.