File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
src/Billing/Services/Implementations Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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 ) )
You can’t perform that action at this time.
0 commit comments