Skip to content

Commit 1d867c5

Browse files
authored
fix(web): allow whole-number car prices (#81)
1 parent 3449332 commit 1d867c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/web/src/CarPaymentPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export default function CarPaymentPage() {
263263
type="number"
264264
inputMode="decimal"
265265
min={0.01}
266-
step={1}
266+
step={0.01}
267267
onKeyDown={preventInvalidNumericInput}
268268
className="rounded-xl border border-slate-700 bg-slate-950/60 px-4 py-2 text-base text-white focus:border-brand-400 focus:outline-none focus:ring-2 focus:ring-brand-500/40"
269269
value={form.vehiclePrice}

0 commit comments

Comments
 (0)