From 64779e7e80383122736c8b03b896022056e5659a Mon Sep 17 00:00:00 2001 From: Rishaan Sharma Date: Sun, 2 Aug 2026 16:16:16 +0530 Subject: [PATCH] Add CAD and Hardware in the review filter --- frontend/src/routes/admin/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/admin/+page.svelte b/frontend/src/routes/admin/+page.svelte index 809adfe..1e2f2b1 100644 --- a/frontend/src/routes/admin/+page.svelte +++ b/frontend/src/routes/admin/+page.svelte @@ -759,7 +759,7 @@ isSuperAdmin || !ELEVATED_PERMS.includes(userDetail?.perms ?? '') ); - const PROJECT_TYPES = ['web', 'windows', 'mac', 'linux', 'cross-platform', 'python', 'android', 'ios', 'other']; + const PROJECT_TYPES = ['web', 'windows', 'mac', 'linux', 'cross-platform', 'python', 'cad', 'hardware', 'android', 'ios', 'other']; let filteredProjects = $derived.by(() => { let result = allProjects;