From b39b179ecb31dc29be55d599704de80cda048671 Mon Sep 17 00:00:00 2001 From: Jax DesMarais-Leder Date: Wed, 10 Jan 2024 12:56:52 -0600 Subject: [PATCH] fix funding source tags for PayPal pay later and credit (#239) --- .../PayPalWebPayments/PayPalWebButtonsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/Demo/SwiftUIComponents/PayPalWebPayments/PayPalWebButtonsView.swift b/Demo/Demo/SwiftUIComponents/PayPalWebPayments/PayPalWebButtonsView.swift index 984ba6bbd..7ddd32030 100644 --- a/Demo/Demo/SwiftUIComponents/PayPalWebPayments/PayPalWebButtonsView.swift +++ b/Demo/Demo/SwiftUIComponents/PayPalWebPayments/PayPalWebButtonsView.swift @@ -20,8 +20,8 @@ struct PayPalWebButtonsView: View { .font(.headline) Picker("Funding Source", selection: $selectedFundingSource) { Text("PayPal").tag(PayPalWebCheckoutFundingSource.paypal) - Text("PayPal Credit").tag(PayPalWebCheckoutFundingSource.paylater) - Text("Pay Later").tag(PayPalWebCheckoutFundingSource.paypalCredit) + Text("PayPal Credit").tag(PayPalWebCheckoutFundingSource.paypalCredit) + Text("Pay Later").tag(PayPalWebCheckoutFundingSource.paylater) } .pickerStyle(SegmentedPickerStyle())