fix: duplicate title and artist keys in other section

This commit is contained in:
Pinapelz
2025-10-13 12:43:11 -07:00
parent a7f7fe57f2
commit ace6db898b
4 changed files with 12 additions and 4 deletions
@@ -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 {
@@ -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 {
@@ -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 {
@@ -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 {