fix(web): remove unused imports in predictions.ts to fix TypeScript build

PredictionHistoryEntry was imported but never used, and API_BASE was
declared but never read. These caused tsc to fail with TS6196/TS6133.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-04-21 16:15:33 -04:00
parent b1121ed6f8
commit 9d7a2e2e3c

View file

@ -1,5 +1,5 @@
// Predictions Page - Prediction leaderboard, open matches, and submission
import type { BotProfile, PredictorStats, OpenMatch, PredictionHistoryEntry } from '../api-types';
import type { PredictorStats, OpenMatch, BotProfile } from '../api-types';
import {
fetchPredictionsLeaderboard,
fetchOpenPredictions,
@ -9,7 +9,6 @@ import {
} from '../api-types';
const PAGES_BASE = '';
const API_BASE = '';
let openMatches: OpenMatch[] = [];
let pollTimer: ReturnType<typeof setInterval> | null = null;