From 869063df7e65f868a334891171130e7221d2b2f3 Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Thu, 21 Aug 2025 18:53:16 +0530 Subject: [PATCH] fix(web): remove none filter for server deploy --- apps/web/src/app/(home)/_components/stack-builder.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/web/src/app/(home)/_components/stack-builder.tsx b/apps/web/src/app/(home)/_components/stack-builder.tsx index 6ef10bd..06a4883 100644 --- a/apps/web/src/app/(home)/_components/stack-builder.tsx +++ b/apps/web/src/app/(home)/_components/stack-builder.tsx @@ -1826,15 +1826,7 @@ const StackBuilder = () => { TECH_OPTIONS[categoryKey as keyof typeof TECH_OPTIONS] || []; const categoryDisplayName = getCategoryDisplayName(categoryKey); - const filteredOptions = categoryOptions.filter((opt) => { - if ( - categoryKey === "serverDeploy" && - stack.runtime === "workers" - ) { - return opt.id === "wrangler" || opt.id === "alchemy"; - } - return true; - }); + const filteredOptions = categoryOptions; if (filteredOptions.length === 0) return null;