@miden-npm/react 0.0.11 → 0.0.12
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.
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2031,7 +2031,7 @@ function PayByCard({
|
|
|
2031
2031
|
const stringifiedThreeDsData = btoa(JSON.stringify(threeDsData));
|
|
2032
2032
|
const threeDsUrl = `https://sandbox-merchant.buzapay.com/account/three-ds-confirm?threeDsData=${encodeURIComponent(
|
|
2033
2033
|
stringifiedThreeDsData
|
|
2034
|
-
)}`;
|
|
2034
|
+
)}&paymentReference=${response.transactionReference}`;
|
|
2035
2035
|
window.open(threeDsUrl, "_self", "noopener,noreferrer");
|
|
2036
2036
|
setMessage(
|
|
2037
2037
|
"3D Secure authentication opened in new tab. Please complete the verification"
|
|
@@ -2054,7 +2054,7 @@ function PayByCard({
|
|
|
2054
2054
|
const stringifiedThreeDsData = btoa(JSON.stringify(threeDsData));
|
|
2055
2055
|
const threeDsUrl = `https://sandbox-merchant.buzapay.com/account/three-ds-confirm?threeDsData=${encodeURIComponent(
|
|
2056
2056
|
stringifiedThreeDsData
|
|
2057
|
-
)}`;
|
|
2057
|
+
)}&paymentReference=${response.transactionReference}`;
|
|
2058
2058
|
window.open(threeDsUrl, "_self", "noopener,noreferrer");
|
|
2059
2059
|
setMessage(
|
|
2060
2060
|
"3D Secure authentication opened in new tab. Please complete the verification"
|