@licklist/design 0.71.4-dev.0 → 0.71.5-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -220,7 +220,7 @@ var RyftPaymentForm = function(param) {
220
220
  if (!(paymentSession === null || paymentSession === void 0 ? void 0 : paymentSession.id) || !(paymentSession === null || paymentSession === void 0 ? void 0 : paymentSession.returnUrl)) return;
221
221
  // Handle there cases when orderStatus - Captured, Approved,
222
222
  // or when no redirect URL and orderStatus - PendingAction
223
- window.location.href = "".concat(paymentSession.returnUrl, "&paymentSessionId=").concat(paymentSession.id);
223
+ window.location.href = "".concat(paymentSession.returnUrl, "&ps=").concat(paymentSession.id);
224
224
  setReferrerBeforePayment();
225
225
  };
226
226
  var handleSubmit = function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.71.4-dev.0",
3
+ "version": "0.71.5-dev.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -207,4 +207,4 @@
207
207
  "node": "20.9.0",
208
208
  "yarn": "4.4.0"
209
209
  }
210
- }
210
+ }
@@ -90,7 +90,7 @@ export const RyftPaymentForm = ({
90
90
 
91
91
  // Handle there cases when orderStatus - Captured, Approved,
92
92
  // or when no redirect URL and orderStatus - PendingAction
93
- window.location.href = `${paymentSession.returnUrl}&paymentSessionId=${paymentSession.id}`
93
+ window.location.href = `${paymentSession.returnUrl}&ps=${paymentSession.id}`
94
94
  setReferrerBeforePayment()
95
95
  }
96
96