From 508067ba5da9afa82bff401dd8478be2145d61a4 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 7 Oct 2025 13:37:36 -0400 Subject: [PATCH] wip: zen --- .../console/app/src/routes/workspace/member-section.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/console/app/src/routes/workspace/member-section.tsx b/packages/console/app/src/routes/workspace/member-section.tsx index ddaac734..6774bb48 100644 --- a/packages/console/app/src/routes/workspace/member-section.tsx +++ b/packages/console/app/src/routes/workspace/member-section.tsx @@ -58,10 +58,6 @@ const removeMember = action(async (form: FormData) => { const updateMember = action(async (form: FormData) => { "use server" - console.log("!@#!@ Form data entries:") - for (const [key, value] of form.entries()) { - console.log(`!@#!@ ${key}:`, value) - } const id = form.get("id")?.toString() if (!id) return { error: "ID is required" } @@ -73,8 +69,6 @@ const updateMember = action(async (form: FormData) => { const monthlyLimit = limit && limit.trim() !== "" ? parseInt(limit) : null if (monthlyLimit !== null && monthlyLimit < 0) return { error: "Set a valid monthly limit" } - console.log({ id, role, monthlyLimit, limit }) - return json( await withActor( () =>