From ace6db898b5aa36c27a16bbcd5eaec52f8866270 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 13 Oct 2025 12:43:11 -0700 Subject: fix: duplicate title and artist keys in other section --- frontend/src/components/displays/NostalgiaScoreDisplay.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'frontend/src/components/displays/NostalgiaScoreDisplay.tsx') 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 = ({ ([key]) => !mainStatKeys.includes(key) && !expandableKeys.includes(key) && - key !== "timestamp", + key !== "timestamp" && + key !== "title" && + key !== "artist", ); return { -- cgit v1.2.3