From a3ef343326ba65e645345a137d566e69a81506b0 Mon Sep 17 00:00:00 2001 From: jackiettran <41605212+jackiettran@users.noreply.github.com> Date: Thu, 15 Jan 2026 16:37:01 -0500 Subject: [PATCH] generic response without specific error message --- backend/routes/stripeWebhooks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/stripeWebhooks.js b/backend/routes/stripeWebhooks.js index 307a200..8034e8a 100644 --- a/backend/routes/stripeWebhooks.js +++ b/backend/routes/stripeWebhooks.js @@ -112,7 +112,7 @@ router.post("/", async (req, res) => { // Still return 200 to prevent Stripe retries for processing errors // Failed payouts will be handled by retry job - res.json({ received: true, eventId: event.id, error: error.message }); + res.json({ received: true, eventId: event.id }); } });