From bf92bb6fd3027d6a4d18f1df3b79c98ad84ff9fb Mon Sep 17 00:00:00 2001 From: Hampus Kraft Date: Wed, 18 Feb 2026 21:42:56 +0000 Subject: [PATCH] chore: format code --- packages/api/src/stripe/services/StripeWebhookService.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/api/src/stripe/services/StripeWebhookService.tsx b/packages/api/src/stripe/services/StripeWebhookService.tsx index d477d61c..ac95bc38 100644 --- a/packages/api/src/stripe/services/StripeWebhookService.tsx +++ b/packages/api/src/stripe/services/StripeWebhookService.tsx @@ -699,7 +699,10 @@ export class StripeWebhookService { // so the PaymentsByPaymentIntent index is never populated. Fall back to customer ID lookup. const customerId = extractId(charge.customer); if (!customerId) { - Logger.error({paymentIntentId, chargeId: charge.id}, 'No payment found for refund and charge has no customer ID'); + Logger.error( + {paymentIntentId, chargeId: charge.id}, + 'No payment found for refund and charge has no customer ID', + ); throw new StripeError('No payment found for refund'); }