Skip to content

Commit

Permalink
Naming alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-SD committed Feb 20, 2025
1 parent 2a5cab7 commit 03aec32
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ class AdvancedDropInService : DropInService(), LifecycleOwner {

override fun onBinLookup(data: List<BinLookupData>) {
lifecycleScope.launch {
val binLookupDataList = data.map { BinLookupDataDTO(it.brand) }
val binLookupDataDtoList = data.map { BinLookupDataDTO(it.brand) }
val checkoutEvent =
CheckoutEvent(
CheckoutEventType.BIN_LOOKUP,
binLookupDataList
binLookupDataDtoList
)
DropInPlatformApi.dropInMessageFlow.emit(checkoutEvent)
}
Expand Down

0 comments on commit 03aec32

Please sign in to comment.