diff --git a/src/app/(admin)/admin/rounds/[roundId]/page.tsx b/src/app/(admin)/admin/rounds/[roundId]/page.tsx index 1797999..7850009 100644 --- a/src/app/(admin)/admin/rounds/[roundId]/page.tsx +++ b/src/app/(admin)/admin/rounds/[roundId]/page.tsx @@ -1824,24 +1824,6 @@ export default function RoundDetailPage() { /> -
- Allow AI to read the contents of uploaded files (PDF/text) for deeper analysis during filtering and evaluation -
-
diff --git a/src/components/admin/round/filtering-dashboard.tsx b/src/components/admin/round/filtering-dashboard.tsx
index 11c2446..f68e2a9 100644
--- a/src/components/admin/round/filtering-dashboard.tsx
+++ b/src/components/admin/round/filtering-dashboard.tsx
@@ -116,6 +116,15 @@ export function FilteringDashboard({ competitionId, roundId }: FilteringDashboar
const utils = trpc.useUtils()
// -- Queries --
+ const { data: round } = trpc.round.getById.useQuery({ id: roundId })
+ const roundConfig = (round?.configJson as Record
+ Allow AI to read uploaded file contents (PDF/text) for deeper analysis
+