From 9a7ae92854cd0b7d9cb7174eb055c3bea5422631 Mon Sep 17 00:00:00 2001 From: Ethan Mick Date: Fri, 3 Feb 2023 13:18:18 -0500 Subject: [PATCH] fix: Change hour logic to be `numeric` --- app/clock.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/clock.tsx b/app/clock.tsx index 9376f5d..26c3346 100644 --- a/app/clock.tsx +++ b/app/clock.tsx @@ -20,7 +20,7 @@ export const Clock = ({ time: initial }: Props) => { return (
{time.toLocaleTimeString(undefined, { - hour: '2-digit', + hour: 'numeric', minute: '2-digit' })}