Skip to content

Commit

Permalink
Bug fix for live graphQL url
Browse files Browse the repository at this point in the history
  • Loading branch information
KunJeongPark committed Oct 24, 2024
1 parent 1eb22f1 commit b76d02b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* PayPalWebPayments
* Deprecate `PayPalVaultRequest(url:setupTokenID:)`
* Add `PayPalVaultRequest(setupTokenID:)`
* CorePayments
* Bug fix for live graphQL url

## 1.4.0 (2024-07-09)
* PayPalNativePayments (DEPRECATED)
Expand Down
2 changes: 1 addition & 1 deletion Sources/CorePayments/Networking/Enums/Environment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public enum Environment {
case .sandbox:
return URL(string: "https://www.sandbox.paypal.com/graphql")!
case .live:
return URL(string: "https://paypal.com/graphql")!
return URL(string: "https://www.paypal.com/graphql")!
}
}

Expand Down

0 comments on commit b76d02b

Please sign in to comment.