diff --git a/src/app/(admin)/admin/dashboard-content.tsx b/src/app/(admin)/admin/dashboard-content.tsx
index 181c202..6d6adad 100644
--- a/src/app/(admin)/admin/dashboard-content.tsx
+++ b/src/app/(admin)/admin/dashboard-content.tsx
@@ -22,6 +22,7 @@ import { ProjectListCompact } from '@/components/dashboard/project-list-compact'
import { ActivityFeed } from '@/components/dashboard/activity-feed'
import { CategoryBreakdown } from '@/components/dashboard/category-breakdown'
import { DashboardSkeleton } from '@/components/dashboard/dashboard-skeleton'
+import { RecentEvaluations } from '@/components/dashboard/recent-evaluations'
type DashboardContentProps = {
editionId: string
@@ -33,6 +34,10 @@ export function DashboardContent({ editionId, sessionName }: DashboardContentPro
{ editionId },
{ enabled: !!editionId, retry: 1, refetchInterval: 30_000 }
)
+ const { data: recentEvals } = trpc.dashboard.getRecentEvaluations.useQuery(
+ { editionId, limit: 8 },
+ { enabled: !!editionId, refetchInterval: 30_000 }
+ )
if (isLoading) {
return
Score
++ {ev.globalScore !== null ? `${ev.globalScore}/10` : '-'} +
+Decision
+No evaluation criteria defined
-Add criteria that jurors will use to score projects
-- Before evaluating this project, you must confirm that you have no conflict of - interest. -
-- A conflict of interest exists if you have a personal, professional, or financial - relationship with the project team that could influence your judgment. -
-Important Reminder
Your evaluation will be used to assess this project. Please provide thoughtful and - constructive feedback to help the team improve. + constructive feedback. Your progress is automatically saved as a draft.
{criterion.description}
+ )} +{criterion.description}
+ )} +{criterion.description}
+ )} +{criterion.description}
)}- Provide a score from 1 to 10 based on your overall assessment -
)} @@ -502,7 +676,7 @@ export default function JuryEvaluatePage({ params: paramsPromise }: PageProps) { -