From ea48ded120f33c6bfde7a70e9846087e132971c7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 13 Oct 2025 12:13:50 -0700 Subject: remove unused primaryKey from score displays --- frontend/src/components/displays/DivaScoreDisplay.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'frontend/src/components/displays/DivaScoreDisplay.tsx') diff --git a/frontend/src/components/displays/DivaScoreDisplay.tsx b/frontend/src/components/displays/DivaScoreDisplay.tsx index c16e55f..3870fd3 100644 --- a/frontend/src/components/displays/DivaScoreDisplay.tsx +++ b/frontend/src/components/displays/DivaScoreDisplay.tsx @@ -62,7 +62,6 @@ const DivaScoreDisplay: React.FC = ({ num_players: "Players" }; - const primaryKeys = ["title", "artist", "song"]; const mainStatKeys = [ "score", "difficulty", @@ -226,19 +225,16 @@ const DivaScoreDisplay: React.FC = ({ ([key]) => !globalSkipKeys.includes(key), ); - const primary = entries.filter(([key]) => primaryKeys.includes(key)); const mainStats = entries.filter(([key]) => mainStatKeys.includes(key)); const expandable = entries.filter(([key]) => expandableKeys.includes(key)); const others = entries.filter( ([key]) => - !primaryKeys.includes(key) && !mainStatKeys.includes(key) && !expandableKeys.includes(key) && key !== "timestamp", ); return { - primary, mainStats, expandable, others, @@ -324,7 +320,7 @@ const DivaScoreDisplay: React.FC = ({
{sortedScores.map((score, index) => { // eslint-disable-next-line @typescript-eslint/no-unused-vars - const { primary, mainStats, expandable, others, timestamp } = + const { mainStats, expandable, others, timestamp } = getScoreEntries(score); const chartIdHash = SHA1(`diva${score.title}${score.artist}`).toString(); return ( -- cgit v1.2.3