diff --git a/frontend/components/dashboard/scan-terminal/scan-terminal-client.ts b/frontend/components/dashboard/scan-terminal/scan-terminal-client.ts index 9e0b9eb0..ef0c4398 100644 --- a/frontend/components/dashboard/scan-terminal/scan-terminal-client.ts +++ b/frontend/components/dashboard/scan-terminal/scan-terminal-client.ts @@ -268,7 +268,7 @@ async function getTerminal({ time_range: "today", limit: "180", force_refresh: String(forceRefresh), - skip_polymarket: "true", + skip_polymarket: "false", }); if (tradingRegion && tradingRegion !== "all") { params.set("trading_region", tradingRegion); diff --git a/web/analysis_service.py b/web/analysis_service.py index 5728e8d0..96dcc16f 100644 --- a/web/analysis_service.py +++ b/web/analysis_service.py @@ -1,7 +1,6 @@ from __future__ import annotations import time as _time -import threading from concurrent.futures import ThreadPoolExecutor from datetime import datetime, timezone, timedelta from typing import Dict, Any, Optional @@ -10,7 +9,6 @@ from fastapi import HTTPException from loguru import logger from web.core import ( - LRUDict, _cache, _CACHE_LOCK, CACHE_TTL,