diff --git a/app/(route)/(index)/page.tsx b/app/(route)/(index)/page.tsx index 13c6d36..4b02166 100644 --- a/app/(route)/(index)/page.tsx +++ b/app/(route)/(index)/page.tsx @@ -21,12 +21,13 @@ export default function HomePage() { } const { champion, certificatedCount, explorationCount } = todayStatusQuery.data.data + const successRate = Math.round((certificatedCount / (certificatedCount + explorationCount)) * 100) || 0 return (

오늘의 도달률

-
100
+
{successRate}
%
🌙 탐사 필요 {explorationCount}
@@ -34,7 +35,7 @@ export default function HomePage() {
- + {champion}
diff --git a/app/(route)/sign-up/page.tsx b/app/(route)/sign-up/page.tsx index 2357423..9408d56 100644 --- a/app/(route)/sign-up/page.tsx +++ b/app/(route)/sign-up/page.tsx @@ -131,6 +131,7 @@ export default function SignUp() { {Object.keys(CHAMPION.DEFAULT).map((champion) => (