Skip to content

Commit

Permalink
fix funding source tags for PayPal pay later and credit (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxdesmarais authored Jan 10, 2024
1 parent 0d8f96a commit b39b179
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit b39b179

Please sign in to comment.