Update Stripe checkout processing fee display to 3%
All checks were successful
Build and Push Docker Images / docker (push) Successful in 45s
All checks were successful
Build and Push Docker Images / docker (push) Successful in 45s
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
6753337135
commit
a0bc75493d
@ -81,7 +81,7 @@ router.post('/create-session', async (req, res) => {
|
|||||||
price_data: {
|
price_data: {
|
||||||
currency: 'usd',
|
currency: 'usd',
|
||||||
product_data: {
|
product_data: {
|
||||||
name: 'Processing Fee (5%)',
|
name: 'Processing Fee (3%)',
|
||||||
description: 'Transaction processing fee',
|
description: 'Transaction processing fee',
|
||||||
},
|
},
|
||||||
unit_amount: processingFee, // Processing fee in cents
|
unit_amount: processingFee, // Processing fee in cents
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user