mirror of
https://gitea.tendokyu.moe/pinapelz/Mirage.git
synced 2026-09-22 22:38:04 +03:00
fix: duplicate title and artist keys in other section
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user