diff --git a/unstoppable-ios-app/domains-manager-ios/Services/Stripe/StripeService.swift b/unstoppable-ios-app/domains-manager-ios/Services/Stripe/StripeService.swift index ca4055e1f..517faf729 100644 --- a/unstoppable-ios-app/domains-manager-ios/Services/Stripe/StripeService.swift +++ b/unstoppable-ios-app/domains-manager-ios/Services/Stripe/StripeService.swift @@ -89,7 +89,7 @@ private extension StripeService { func payWithStripeAsync(callback: @escaping PurchaseResultCallback) { paymentDetails.resultCallback = callback DispatchQueue.main.async { - if StripeAPI.deviceSupportsApplePay() { + if StripeService.isApplePaySupported { self.startPaymentWithApplePay() } else { self.startPaymentWithoutApplePay()