From a0bc75493dc72ef8e436b9f5074ca7ef05af8205 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 30 Oct 2025 15:02:35 +0100 Subject: [PATCH] Update Stripe checkout processing fee display to 3% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed line item name from "Processing Fee (5%)" to "Processing Fee (3%)" - This updates what customers see on the Stripe checkout page - Backend constant was already updated to 0.03 in previous commit - Frontend receipt page was already showing 3% - All processing fee displays now consistently show 3% 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- server/routes/checkout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/checkout.js b/server/routes/checkout.js index 8aecc93..d020d69 100644 --- a/server/routes/checkout.js +++ b/server/routes/checkout.js @@ -81,7 +81,7 @@ router.post('/create-session', async (req, res) => { price_data: { currency: 'usd', product_data: { - name: 'Processing Fee (5%)', + name: 'Processing Fee (3%)', description: 'Transaction processing fee', }, unit_amount: processingFee, // Processing fee in cents