diff --git a/app/components/TimePopover.tsx b/app/components/TimePopover.tsx index 933efa29c..1e8d55180 100644 --- a/app/components/TimePopover.tsx +++ b/app/components/TimePopover.tsx @@ -27,7 +27,7 @@ export default function TimePopover({ className?: string; footerText?: string; }) { - const { formatDateTime, formatTime } = useTimeFormat(); + const { formatDateTimeSmartMinutes, formatTime } = useTimeFormat(); const [open, setOpen] = useState(false); @@ -61,7 +61,7 @@ export default function TimePopover({ setOpen(true); }} > - {formatDateTime(time, options)} + {formatDateTimeSmartMinutes(time, options)}
@@ -120,7 +118,7 @@ export default function TournamentRegisterPage() {