From a1143f3696a0b272018f7eea43ee23a674c618e1 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 28 Sep 2024 13:46:22 +0530 Subject: Add context menu for apps (fav,settings,uninstall) --- src/components/Clock.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/Clock.tsx') diff --git a/src/components/Clock.tsx b/src/components/Clock.tsx index 113201f..619a31b 100644 --- a/src/components/Clock.tsx +++ b/src/components/Clock.tsx @@ -14,7 +14,7 @@ export const Clock: React.FC = () => { const formatter = new Intl.DateTimeFormat('en', { hour: 'numeric', minute: 'numeric', - second: 'numeric', + // second: 'numeric', }); return formatter.format(date); }, [date]); @@ -30,7 +30,7 @@ export const Clock: React.FC = () => { return ( - {timeText} + {timeText} {dateText} ); -- cgit v1.3.1