From 80314e5e3f022d4fe020a47cff3f92267b2d14e8 Mon Sep 17 00:00:00 2001 From: Polaris Date: Wed, 11 Sep 2024 19:43:58 -0400 Subject: [PATCH] removed {" "} --- components/userRatingBaseList/page.tsx | 7 +++---- components/userRatingBaseNextList/page.tsx | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) 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)}