Skip to content

Commit a666ceb

Browse files
Run dotnet format
1 parent bd17067 commit a666ceb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Billing/Services/Implementations/StripeEventUtilityService.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -462,16 +462,16 @@ private async Task<string> GetFundingBankTransferTypeAsync(Charge charge)
462462
switch (cashBalanceTransaction)
463463
{
464464
case { Type: "funded", Funded: not null }:
465-
{
466-
bankTransferType = cashBalanceTransaction.Funded.BankTransfer.Type;
467-
break;
468-
}
465+
{
466+
bankTransferType = cashBalanceTransaction.Funded.BankTransfer.Type;
467+
break;
468+
}
469469
case { Type: "applied_to_payment", AppliedToPayment: not null }
470470
when cashBalanceTransaction.AppliedToPayment.PaymentIntentId == charge.PaymentIntentId:
471-
{
472-
matchingPaymentIntentFound = true;
473-
break;
474-
}
471+
{
472+
matchingPaymentIntentFound = true;
473+
break;
474+
}
475475
}
476476

477477
if (matchingPaymentIntentFound && !string.IsNullOrEmpty(bankTransferType))

0 commit comments

Comments
 (0)