diff --git a/src/components/donation/Steps/Summary/helpers.ts b/src/components/donation/Steps/Summary/helpers.ts index 6f4fc9fc8f..e331b538d9 100644 --- a/src/components/donation/Steps/Summary/helpers.ts +++ b/src/components/donation/Steps/Summary/helpers.ts @@ -14,7 +14,8 @@ export const processingFee = (details: DonationDetails): number => { details.method satisfies "stripe"; /** @see https://stripe.com/pricing */ - return fee(+details.amount, PROCESSING_RATES.stripe, 0.3); + const { currency } = details; + return fee(+details.amount, PROCESSING_RATES.stripe, 0.3 * currency.rate); }; function fee(amount: number, rate: number, flat = 0): number {