diff --git a/app/(sharing)/[token]/[id]/page.tsx b/app/(sharing)/[token]/[id]/page.tsx index cb330cc..45cb41e 100644 --- a/app/(sharing)/[token]/[id]/page.tsx +++ b/app/(sharing)/[token]/[id]/page.tsx @@ -33,56 +33,31 @@ export default async function Share({ const matchedSongs = songsData.filter((song) => playlogIds.includes(song.id)); return (
-
-

Salmon

+
+ {matchedSongs.map((song) => ( +
+
+

Score: {song.score}

+
+
+ ))}

Broccoli

-
+

Tamago

-
+

Pork

-
+

Edamame

- //
- //
- // {matchedSongs.map((song) => ( - //
- //
- //

{song.title}

- //

Artist: {song.artist}

- //

Genre: {song.genre}

- //

diff: {song.chartlevel}

- - //

Level: {song.level}

- - //

Full Combo: {song.isFullCombo ? "Yes" : "No"}

- //

Score: {song.score}

- - //
- // - // {getDifficultyText(song.chartId)} - // - //
- //
- //
- // ))} - //
); }