From 4630aa61da55d9338acc108a9f47c30fb13b44d1 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 12 May 2026 15:20:51 +0000 Subject: [PATCH] Fix eqeqeq lint errors: use !== instead of != for null checks https://claude.ai/code/session_01LbTWNFt6j91LxpiEhbXNop --- app/components/sport-season/RegularSeasonStandings.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/sport-season/RegularSeasonStandings.tsx b/app/components/sport-season/RegularSeasonStandings.tsx index 8974f04..bc356bf 100644 --- a/app/components/sport-season/RegularSeasonStandings.tsx +++ b/app/components/sport-season/RegularSeasonStandings.tsx @@ -237,9 +237,9 @@ function StandingsTable({ showSoccerTable?: boolean; }) { const allRows = sections.flatMap((s) => s.rows); - const hasStreak = allRows.some((r) => r.streak != null); - const hasLastTen = allRows.some((r) => r.lastTen != null); - const hasGB = allRows.some((r) => r.gamesBack != null); + const hasStreak = allRows.some((r) => r.streak !== null); + const hasLastTen = allRows.some((r) => r.lastTen !== null); + const hasGB = allRows.some((r) => r.gamesBack !== null); // # Team GP W [D] L [GF GA GD PTS] [OTL PTS] [PCT] [GB] [L10] [STK] Mgr // Soccer: 11 fixed columns. Non-soccer: 5 base + GP + optional cols.