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:
parent
b1121ed6f8
commit
9d7a2e2e3c
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue