removed {" "}
This commit is contained in:
@ -30,7 +30,6 @@ export const ChunithmTopPlays: FC<chunithmTopPlays> = ({
|
||||
}) => {
|
||||
return (
|
||||
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8">
|
||||
{" "}
|
||||
{chuniProfileTopPlays.topPlays.map((chuniProfileTopPlays, index) => {
|
||||
return (
|
||||
<div key={index} className="flex flex-col items-center p-2">
|
||||
@ -44,15 +43,15 @@ export const ChunithmTopPlays: FC<chunithmTopPlays> = ({
|
||||
<strong>Level: </strong> {chuniProfileTopPlays.level}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Difficulty: </strong>{" "}
|
||||
<strong>Difficulty: </strong>
|
||||
{getDifficultyText(Number(chuniProfileTopPlays.chartId))}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Score: </strong>{" "}
|
||||
<strong>Score: </strong>
|
||||
{chuniProfileTopPlays.score?.toLocaleString()}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Rating: </strong>{" "}
|
||||
<strong>Rating: </strong>
|
||||
{(chuniProfileTopPlays.rating / 100).toFixed(2)}
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -29,7 +29,6 @@ export const ChunithmNextPlays: FC<ChunithmProfileHotPlays> = ({
|
||||
}) => {
|
||||
return (
|
||||
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8">
|
||||
{" "}
|
||||
{chuniProfileNextPlays.nextPlays.map((playerNextRatingList, index) => {
|
||||
return (
|
||||
<div key={index} className="flex flex-col items-center p-2">
|
||||
@ -48,11 +47,11 @@ export const ChunithmNextPlays: FC<ChunithmProfileHotPlays> = ({
|
||||
{getDifficultyText(Number(playerNextRatingList.chartId))}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Score: </strong>{" "}
|
||||
<strong>Score: </strong>
|
||||
{playerNextRatingList.score?.toLocaleString()}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Rating: </strong>{" "}
|
||||
<strong>Rating: </strong>
|
||||
{(playerNextRatingList.rating / 100).toFixed(2)}
|
||||
</li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user