diff --git a/apps/web/src/components/tastingForm.tsx b/apps/web/src/components/tastingForm.tsx index a339a2de..af4eb383 100644 --- a/apps/web/src/components/tastingForm.tsx +++ b/apps/web/src/components/tastingForm.tsx @@ -151,7 +151,7 @@ export default function TastingForm({ onChange( e.target.value === "" ? undefined - : parseInt(e.target.value, 10), + : parseFloat(e.target.value), ) } error={errors.rating}