From 897a8b459cc5886876c02cbbf4efeca55668bfbc Mon Sep 17 00:00:00 2001 From: oliver Date: Sun, 14 Jun 2026 20:34:37 -0300 Subject: [PATCH] Update app.js --- app.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index af22ec1..bca0c00 100644 --- a/app.js +++ b/app.js @@ -1625,6 +1625,7 @@ async function crmSetStageSelected(stage) { const ok = await confirmDialog( `Set Stage to ${stage}`, `Set stage to “${stage}” for ${ids.length} contact${ids.length !== 1 ? "s" : ""}?`, + stage, ); if (!ok) return; @@ -1650,7 +1651,7 @@ async function crmSetStageSelected(stage) { }; try { const res = await apiFetch(apiUrl(ROUTES.crm), { - method: "PUT", + method: "POST", headers: apiHeaders(), body: JSON.stringify(payload), }); @@ -1731,7 +1732,7 @@ async function crmSaveEdit() { try { const res = await apiFetch(apiUrl(ROUTES.crm), { - method: "PUT", + method: "POST", headers: apiHeaders(), body: JSON.stringify(payload), });