Skip to content

Commit 355c0b4

Browse files
authored
Display times in schedule always in 24h format (#2103)
* Display times in schedule always in 24h format * Add a comment
1 parent 5291dfc commit 355c0b4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/app/conf/2025/schedule/_components/format-block-time.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { parseISO } from "date-fns"
33
const timeFormat = new Intl.DateTimeFormat(undefined, {
44
hour: "2-digit",
55
minute: "2-digit",
6+
hour12: false, // per Carolyn's request
67
})
78

89
export const formatBlockTime = (start: string, end?: Date) => {

0 commit comments

Comments
 (0)