Skip to content

Commit

Permalink
fix laskugen
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliarepo committed Oct 31, 2024
1 parent 1af5001 commit a4bba51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/invoice-generator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function InputRow({
<div>
<InputLabel name={label} htmlId={htmlId} />
<span className="flex">
<Input id={htmlId} type={type ?? "text"} {...restProps} />
<Input id={htmlId} type={type ?? "text"} name={name} {...restProps} />
{unit ? <span className="ml-1 translate-y-1">{unit}</span> : null}
</span>
</div>
Expand Down

0 comments on commit a4bba51

Please sign in to comment.