From a1269928d176c0f2e7929264de3842dcf292a420 Mon Sep 17 00:00:00 2001 From: Tilo-K Date: Wed, 31 Dec 2025 01:18:10 +0100 Subject: [PATCH] fix: fix frontend build errors --- frontend/src/routes/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/routes/index.tsx b/frontend/src/routes/index.tsx index 82085c3..a0eaa54 100644 --- a/frontend/src/routes/index.tsx +++ b/frontend/src/routes/index.tsx @@ -2,9 +2,8 @@ import { ServerStats } from "@/components/server_stats"; import { Card } from "@/components/ui/card"; import type { Metrics } from "@/models/metrics"; import type { MinimalServers } from "@/models/minimal_servers"; -import { useQueries, useQuery } from "@tanstack/react-query"; +import { useQuery } from "@tanstack/react-query"; import { createFileRoute } from "@tanstack/react-router"; -import { useEffect, useState } from "react"; export const Route = createFileRoute("/")({ component: App,