From d55538167aac22970025cf30f37f32805b5aa44d Mon Sep 17 00:00:00 2001 From: polaris Date: Sun, 30 Jun 2024 00:31:58 -0400 Subject: [PATCH] bento cleanup --- app/(sharing)/[token]/[id]/page.tsx | 47 +++++++---------------------- 1 file changed, 11 insertions(+), 36 deletions(-) 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)} - // - //
- //
- //
- // ))} - //
); }