aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/displays
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-10-13 12:43:11 -0700
committerPinapelz <yukais@pinapelz.com>2025-10-13 12:43:11 -0700
commitace6db898b5aa36c27a16bbcd5eaec52f8866270 (patch)
tree8bcd6220a8f7ea079f976665f6a0af00bbe63d97 /frontend/src/components/displays
parenta7f7fe57f2146f770b9f4e27edf33f73f2f29bae (diff)
fix: duplicate title and artist keys in other section
Diffstat (limited to 'frontend/src/components/displays')
-rw-r--r--frontend/src/components/displays/DivaScoreDisplay.tsx4
-rw-r--r--frontend/src/components/displays/MusicDiverScoreDisplay.tsx4
-rw-r--r--frontend/src/components/displays/NostalgiaScoreDisplay.tsx4
-rw-r--r--frontend/src/components/displays/ReflecBeatScoreDisplay.tsx4
4 files changed, 12 insertions, 4 deletions
diff --git a/frontend/src/components/displays/DivaScoreDisplay.tsx b/frontend/src/components/displays/DivaScoreDisplay.tsx
index 3870fd3..9e4a47f 100644
--- a/frontend/src/components/displays/DivaScoreDisplay.tsx
+++ b/frontend/src/components/displays/DivaScoreDisplay.tsx
@@ -231,7 +231,9 @@ const DivaScoreDisplay: React.FC<ScoreDisplayProps> = ({
([key]) =>
!mainStatKeys.includes(key) &&
!expandableKeys.includes(key) &&
- key !== "timestamp",
+ key !== "timestamp" &&
+ key !== "title" &&
+ key !== "artist"
);
return {
diff --git a/frontend/src/components/displays/MusicDiverScoreDisplay.tsx b/frontend/src/components/displays/MusicDiverScoreDisplay.tsx
index 4e7f41b..2b7d186 100644
--- a/frontend/src/components/displays/MusicDiverScoreDisplay.tsx
+++ b/frontend/src/components/displays/MusicDiverScoreDisplay.tsx
@@ -181,7 +181,9 @@ const MusicDiverDisplay: React.FC<ScoreDisplayProps> = ({
([key]) =>
!mainStatKeys.includes(key) &&
!expandableKeys.includes(key) &&
- key !== "timestamp",
+ key !== "timestamp" &&
+ key !== "title" &&
+ key !== "artist",
);
return {
diff --git a/frontend/src/components/displays/NostalgiaScoreDisplay.tsx b/frontend/src/components/displays/NostalgiaScoreDisplay.tsx
index cfc3d09..bb01379 100644
--- a/frontend/src/components/displays/NostalgiaScoreDisplay.tsx
+++ b/frontend/src/components/displays/NostalgiaScoreDisplay.tsx
@@ -183,7 +183,9 @@ const NostalgiaScoreDisplay: React.FC<ScoreDisplayProps> = ({
([key]) =>
!mainStatKeys.includes(key) &&
!expandableKeys.includes(key) &&
- key !== "timestamp",
+ key !== "timestamp" &&
+ key !== "title" &&
+ key !== "artist",
);
return {
diff --git a/frontend/src/components/displays/ReflecBeatScoreDisplay.tsx b/frontend/src/components/displays/ReflecBeatScoreDisplay.tsx
index 39ea4f7..b11983e 100644
--- a/frontend/src/components/displays/ReflecBeatScoreDisplay.tsx
+++ b/frontend/src/components/displays/ReflecBeatScoreDisplay.tsx
@@ -189,7 +189,9 @@ const ReflecBeatScoreDisplay: React.FC<ScoreDisplayProps> = ({
([key]) =>
!mainStatKeys.includes(key) &&
!expandableKeys.includes(key) &&
- key !== "timestamp",
+ key !== "timestamp" &&
+ key !== "title" &&
+ key !== "artist",
);
return {
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage