oops
This commit is contained in:
@ -30,17 +30,11 @@ export const ChunithmHotPlays: 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">
|
||||||
{" "}
|
|
||||||
{chuniProfileHotPlays.hotRating.map((playerHotRatingList, index) => {
|
{chuniProfileHotPlays.hotRating.map((playerHotRatingList, 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">
|
||||||
<div className="font-bold"></div>
|
<div className="font-bold"></div>
|
||||||
|
<ImageCell jacketPath={playerHotRatingList.jacketPath!} />
|
||||||
<ImageCell
|
|
||||||
jacketPath={playerHotRatingList.jacketPath!}
|
|
||||||
title={playerHotRatingList.title!}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<ul className="mt-2 text-center">
|
<ul className="mt-2 text-center">
|
||||||
<li>
|
<li>
|
||||||
|
@ -35,10 +35,7 @@ export const ChunithmTopPlays: FC<chunithmTopPlays> = ({
|
|||||||
return (
|
return (
|
||||||
<div key={index} className="flex flex-col items-center p-2">
|
<div key={index} className="flex flex-col items-center p-2">
|
||||||
<div className="font-bold"></div>
|
<div className="font-bold"></div>
|
||||||
<ImageCell
|
<ImageCell jacketPath={chuniProfileTopPlays.jacketPath!} />
|
||||||
jacketPath={chuniProfileTopPlays.jacketPath!}
|
|
||||||
title={chuniProfileTopPlays.title!}
|
|
||||||
/>
|
|
||||||
<ul className="mt-2 text-center">
|
<ul className="mt-2 text-center">
|
||||||
<li>
|
<li>
|
||||||
<strong>Title: </strong> {chuniProfileTopPlays.title}
|
<strong>Title: </strong> {chuniProfileTopPlays.title}
|
||||||
|
@ -31,18 +31,10 @@ export const ChunithmNextPlays: FC<ChunithmProfileHotPlays> = ({
|
|||||||
<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) => {
|
||||||
const jacketPath = playerNextRatingList.jacketPath?.replace(
|
|
||||||
".dds",
|
|
||||||
".png",
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div key={index} className="flex flex-col items-center p-2">
|
<div key={index} className="flex flex-col items-center p-2">
|
||||||
<div className="font-bold"></div>
|
<div className="font-bold"></div>
|
||||||
<ImageCell
|
<ImageCell jacketPath={playerNextRatingList.jacketPath!} />
|
||||||
jacketPath={playerNextRatingList.jacketPath!}
|
|
||||||
title={playerNextRatingList.title!}
|
|
||||||
/>
|
|
||||||
<div>
|
<div>
|
||||||
<ul className="mt-2 text-center">
|
<ul className="mt-2 text-center">
|
||||||
<li>
|
<li>
|
||||||
|
Reference in New Issue
Block a user