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