Add missing CT parameter when sending tips

This commit is contained in:
2025-02-13 15:51:13 -05:00
parent e71915cbba
commit 11284e3c38

View File

@@ -75,10 +75,10 @@ public class SendTipHandler(
req.Amount,
req.Currency,
req.Message,
creator.StripeAccountId,
creator.StripeAccountId!,
req.CheckoutSuccessUrl,
req.CheckoutCancelledUrl
);
req.CheckoutCancelledUrl,
ct);
await SendAsync(
new SendTipResponse("Pending", checkoutSession.Url),