Skip to content

Commit

Permalink
IOS-8360 some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Balashov152 committed Nov 4, 2024
1 parent fa4d0bb commit 049e6e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ private extension OnrampPaymentMethodsViewModel {
iconURL: method.identity.image,
isSelected: selectedPaymentMethod == method.identity.code,
action: { [weak self] in
self?.selectedPaymentMethod = method.identity.code
self?.selectedPaymentMethod = method.id
self?.interactor.update(selectedPaymentMethod: method)
self?.updateView(paymentMethods: methods)
}
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ struct OnrampProvidersCompactProviderView: View {
Text("\(Localization.onrampVia) \(data.providerName)")
.style(Fonts.Regular.caption1, color: Colors.Text.tertiary)
}
.lineLimit(1)
}

private var badgeView: some View {
Expand Down

0 comments on commit 049e6e9

Please sign in to comment.