From f7196881d2e674143e49a6e554a11ceb7226ae50 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 30 Oct 2025 13:16:05 +0100 Subject: [PATCH] Change processing fee from 3% to 5% MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated PROCESSING_FEE_PERCENT from 0.03 to 0.05 and updated the line item description in Stripe checkout from "Processing Fee (3%)" to "Processing Fee (5%)". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- server/routes/checkout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/routes/checkout.js b/server/routes/checkout.js index d020d69..8c8d006 100644 --- a/server/routes/checkout.js +++ b/server/routes/checkout.js @@ -12,7 +12,7 @@ const PORTFOLIO_PRICING = { }; // Processing fee percentage -const PROCESSING_FEE_PERCENT = 0.03; // 3% +const PROCESSING_FEE_PERCENT = 0.05; // 5% /** * Calculate pricing with processing fee @@ -81,7 +81,7 @@ router.post('/create-session', async (req, res) => { price_data: { currency: 'usd', product_data: { - name: 'Processing Fee (3%)', + name: 'Processing Fee (5%)', description: 'Transaction processing fee', }, unit_amount: processingFee, // Processing fee in cents