diff --git a/app/kkuko/profile/utils/profileHelper.ts b/app/kkuko/profile/utils/profileHelper.ts index e5f7b79..fd3e774 100644 --- a/app/kkuko/profile/utils/profileHelper.ts +++ b/app/kkuko/profile/utils/profileHelper.ts @@ -21,7 +21,7 @@ export const extractColorFromLabel = (description: string, isDarkTheme: boolean) }; export const formatNumber = (num: number): string => { - return (num / 1000).toString(); + return (num / 10).toString(); }; export const calculateTotalOptions = (itemsData: ItemInfo[]) => { diff --git a/app/kkuko/ranking/components/Podium.tsx b/app/kkuko/ranking/components/Podium.tsx index 53eed03..ae33c71 100644 --- a/app/kkuko/ranking/components/Podium.tsx +++ b/app/kkuko/ranking/components/Podium.tsx @@ -208,7 +208,7 @@ export function Podium({ topThree, option }: PodiumProps) {
- 승률 {winRate(entry)}% + {entry.userRecord.total.toLocaleString()}전 / 승률 {winRate(entry)}%