From cb88b7cec5c044db06167b1fde23a599bc6c4a51 Mon Sep 17 00:00:00 2001 From: Jiho Park <59248080+jihorobert@users.noreply.github.com> Date: Sat, 30 Mar 2024 14:44:30 +0900 Subject: [PATCH] fix(fe): change contest time form (#1622) --- apps/frontend/app/(main)/_components/TimeDiff.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/app/(main)/_components/TimeDiff.tsx b/apps/frontend/app/(main)/_components/TimeDiff.tsx index 4193621ce0..227ce8a383 100644 --- a/apps/frontend/app/(main)/_components/TimeDiff.tsx +++ b/apps/frontend/app/(main)/_components/TimeDiff.tsx @@ -26,7 +26,7 @@ export default function TimeDiff({ timeRef }: Props) { return ( - {days}d {hours + diff.format(':mm:ss')} + D-{days} {hours + diff.format(':mm:ss')} ) }