From 5863d30ec92928c8706f1948bddb2adbcb7073f0 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Mon, 4 Aug 2025 17:18:57 -0400 Subject: [PATCH] fix(tips): now display the correct tip amound in the email notification --- backend/Modules/Tipping/Services/TipPaymentNotifier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Modules/Tipping/Services/TipPaymentNotifier.cs b/backend/Modules/Tipping/Services/TipPaymentNotifier.cs index 9ad18c9..79bebb4 100644 --- a/backend/Modules/Tipping/Services/TipPaymentNotifier.cs +++ b/backend/Modules/Tipping/Services/TipPaymentNotifier.cs @@ -44,7 +44,7 @@ internal class TipPaymentNotifier( await SendTipConfirmationEmailAsync( customerEmail, creator?.Name ?? "le créateur", - tip.Amount, + tip.Amount / 100m, tip.Currency, receiptUrl) .ConfigureAwait(false); // Pass the receipt URL