From ee35e3d61daee9dad62ff6d2dea1fabeb84c764e Mon Sep 17 00:00:00 2001 From: Thomas Camlong Date: Fri, 14 Nov 2025 17:38:50 +0100 Subject: [PATCH] feat(dashboard): add experimental warning to submissions dashboard Add ExperimentalWarning component to dashboard page to inform users that the submissions system is in experimentation phase. Warns that submissions won't be reviewed or processed during this phase. --- web/src/app/dashboard/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/app/dashboard/page.tsx b/web/src/app/dashboard/page.tsx index f08dd95f..21dedf56 100644 --- a/web/src/app/dashboard/page.tsx +++ b/web/src/app/dashboard/page.tsx @@ -1,6 +1,7 @@ "use client" import { AlertCircle, RefreshCw } from "lucide-react" +import { ExperimentalWarning } from "@/components/experimental-warning" import { SubmissionsDataTable } from "@/components/submissions-data-table" import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert" import { Button } from "@/components/ui/button" @@ -104,6 +105,7 @@ export default function DashboardPage() { // Success state return (
+ Submissions Dashboard