diff --git a/components/userRatingBaseList/page.tsx b/components/userRatingBaseList/page.tsx index 27569cc..ed58dca 100644 --- a/components/userRatingBaseList/page.tsx +++ b/components/userRatingBaseList/page.tsx @@ -30,7 +30,6 @@ export const ChunithmTopPlays: FC = ({ }) => { return (
- {" "} {chuniProfileTopPlays.topPlays.map((chuniProfileTopPlays, index) => { return (
@@ -44,15 +43,15 @@ export const ChunithmTopPlays: FC = ({ Level: {chuniProfileTopPlays.level}
  • - Difficulty: {" "} + Difficulty: {getDifficultyText(Number(chuniProfileTopPlays.chartId))}
  • - Score: {" "} + Score: {chuniProfileTopPlays.score?.toLocaleString()}
  • - Rating: {" "} + Rating: {(chuniProfileTopPlays.rating / 100).toFixed(2)}
  • diff --git a/components/userRatingBaseNextList/page.tsx b/components/userRatingBaseNextList/page.tsx index c3f9449..071b43b 100644 --- a/components/userRatingBaseNextList/page.tsx +++ b/components/userRatingBaseNextList/page.tsx @@ -29,7 +29,6 @@ export const ChunithmNextPlays: FC = ({ }) => { return (
    - {" "} {chuniProfileNextPlays.nextPlays.map((playerNextRatingList, index) => { return (
    @@ -48,11 +47,11 @@ export const ChunithmNextPlays: FC = ({ {getDifficultyText(Number(playerNextRatingList.chartId))}
  • - Score: {" "} + Score: {playerNextRatingList.score?.toLocaleString()}
  • - Rating: {" "} + Rating: {(playerNextRatingList.rating / 100).toFixed(2)}