Skip to content

Commit

Permalink
🐛 Fix input error type
Browse files Browse the repository at this point in the history
  • Loading branch information
bal7hazar committed Dec 19, 2024
1 parent 48e6296 commit adc2dff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function Amount({
type="number"
className="bg-quaternary pr-12 border border-quaternary focus-visible:border-muted focus-visible:outline-none focus-visible:ring-0 focus-visible:ring-offset-0 [&::-webkit-inner-spin-button]:appearance-none"
placeholder={(0.01).toLocaleString()}
value={amount}
value={amount ?? ""}
onChange={handleChange}
/>
{countervalue && (
Expand Down

0 comments on commit adc2dff

Please sign in to comment.