diff --git a/apps/hub/app/(app)/admin/report/page.tsx b/apps/hub/app/(app)/admin/report/page.tsx index 2d15828f..7d04829a 100644 --- a/apps/hub/app/(app)/admin/report/page.tsx +++ b/apps/hub/app/(app)/admin/report/page.tsx @@ -1,6 +1,8 @@ "use client"; import { PaginatedTable } from "_components/PaginatedTable"; import { reportColumns } from "(app)/admin/report/columns"; +import { TriangleAlert } from "lucide-react"; +import Link from "next/link"; export default function ReportPage() { return ( @@ -12,6 +14,18 @@ export default function ReportPage() { Sender: true, Reported: true, }} + leftOfSearch={ +
+
+ + + +
+ } columns={reportColumns} /> );