import { fetchTorrentDownloads, TorrentDownloadDto, LatestFoundPerLibraryDto, apiFetch } from "@/lib/api"; import { DownloadsPage } from "./DownloadsPage"; export const dynamic = "force-dynamic"; async function isQbConfigured(): Promise { try { const data = await apiFetch<{ url?: string; username?: string }>("/settings/qbittorrent"); return !!(data && data.url?.trim() && data.username?.trim()); } catch { return false; } } export default async function Page() { const [downloads, latestFound, qbConfigured] = await Promise.all([ fetchTorrentDownloads().catch(() => [] as TorrentDownloadDto[]), apiFetch("/download-detection/latest-found").catch(() => [] as LatestFoundPerLibraryDto[]), isQbConfigured(), ]); return ; }