diff --git a/ExampleApp/Views/ProductDetailViewController.swift b/ExampleApp/Views/ProductDetailViewController.swift index 3c88f008..58d74506 100644 --- a/ExampleApp/Views/ProductDetailViewController.swift +++ b/ExampleApp/Views/ProductDetailViewController.swift @@ -99,6 +99,11 @@ class ProductDetailViewController: BaseViewController { allowedPaymentMethods: allowedPaymentMethods, paymentDelegate: self ) + + if usesCapabilityDataForPaymentMethods, let capability = self.capability { + paymentCreatorController.applyPaymentMethods(from: capability) + } + present(paymentCreatorController, animated: true, completion: nil) }