Fix eqeqeq lint errors: use !== instead of != for null checks

https://claude.ai/code/session_01LbTWNFt6j91LxpiEhbXNop
This commit is contained in:
Claude 2026-05-12 15:20:51 +00:00
parent 08e93e955a
commit 4630aa61da
No known key found for this signature in database

View file

@ -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.