From 4e023cfd1e130d73acfa1270f5439e4ca0668203 Mon Sep 17 00:00:00 2001
From: amianthus <49116958+SirTenzin@users.noreply.github.com>
Date: Tue, 20 Jan 2026 14:40:22 +0000
Subject: [PATCH 1/2] Rename 'Plan Features' to 'Features' in sidebar
---
vite/src/views/main-sidebar/MainSidebar.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vite/src/views/main-sidebar/MainSidebar.tsx b/vite/src/views/main-sidebar/MainSidebar.tsx
index 246df6e2c..90e406282 100644
--- a/vite/src/views/main-sidebar/MainSidebar.tsx
+++ b/vite/src/views/main-sidebar/MainSidebar.tsx
@@ -152,7 +152,7 @@ export const MainSidebar = () => {
icon: ,
},
{
- title: "Plan Features",
+ title: "Features",
value: "features",
icon: ,
},
From 34b3ef4106c3b536ea3920e670da809ec59dd1b5 Mon Sep 17 00:00:00 2001
From: amianthus <49116958+SirTenzin@users.noreply.github.com>
Date: Tue, 20 Jan 2026 15:15:09 +0000
Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=F0=9F=90=9B=20hotfix=20plan/has=5Fc?=
=?UTF-8?q?ustomers?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
server/src/internal/products/productRouter.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/src/internal/products/productRouter.ts b/server/src/internal/products/productRouter.ts
index 46df6f435..22593307a 100644
--- a/server/src/internal/products/productRouter.ts
+++ b/server/src/internal/products/productRouter.ts
@@ -9,11 +9,10 @@ import { handleGetPlan } from "./handlers/handleGetPlan.js";
import { handleGetPlanDeleteInfo } from "./handlers/handleGetPlanDeleteInfo.js";
import { handleListPlans } from "./handlers/handleListPlans.js";
import { handleMigrateProductV2 } from "./handlers/handleMigrateProductV2.js";
-import { handlePlanHasCustomers } from "./handlers/handlePlanHasCustomers.js";
+
import { handleUpdatePlan } from "./handlers/handleUpdateProduct/handleUpdatePlan.js";
export const expressProductRouter = express.Router();
-expressProductRouter.get("/:product_id/has_customers", handlePlanHasCustomers);
export const honoProductBetaRouter = new Hono();
honoProductBetaRouter.get("", ...handleListPlans);
@@ -37,6 +36,7 @@ honoProductRouter.delete("/:product_id", ...handleDeleteProductHono);
honoProductRouter.post("/:product_id/copy", ...handleCopyProductV2);
// Info before deleting plan
+honoProductRouter.get("/:product_id/has_customers", ...handlePlanHasCustomersV2);
honoProductRouter.post(
"/:product_id/has_customers",
...handlePlanHasCustomersV2,