From 17c1fbe0f8565f191a191138bebac7409512962e Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 15 Mar 2025 23:23:16 +0900 Subject: feat(frontend): improve left time display --- .../components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx') diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx index ff60641..1b91620 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx @@ -1,6 +1,7 @@ import { useAtomValue } from "jotai"; import type { components } from "../../api/schema"; import { gamingLeftTimeSecondsAtom } from "../../states/watch"; +import LeftTime from "../Gaming/LeftTime"; import Problem from "../Gaming/Problem"; import UserLabel from "../UserLabel"; @@ -25,12 +26,6 @@ export default function GolfWatchAppGamingMultiplayer({ }: Props) { const leftTimeSeconds = useAtomValue(gamingLeftTimeSecondsAtom)!; - const leftTime = (() => { - const m = Math.floor(leftTimeSeconds / 60); - const s = leftTimeSeconds % 60; - return `${m.toString().padStart(2, "0")}:${s.toString().padStart(2, "0")}`; - })(); - const topBg = gameResult ? gameResult === "winA" ? "bg-orange-400" @@ -45,7 +40,7 @@ export default function GolfWatchAppGamingMultiplayer({
{gameDisplayName}
-
{leftTime}
+
-- cgit v1.2.3-70-g09d2