abmp-npm 1.8.14 → 1.8.15
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/package.json +1 -1
- package/pages/personalDetails.js +6 -0
package/package.json
CHANGED
package/pages/personalDetails.js
CHANGED
|
@@ -105,6 +105,12 @@ async function personalDetailsOnReady({
|
|
|
105
105
|
console.log('memberTokenId', memberTokenId);
|
|
106
106
|
console.log('baseUrl', baseUrl);
|
|
107
107
|
|
|
108
|
+
const memberTokenIdAPI = await wixLocation.query.then(query => query.token);
|
|
109
|
+
console.log('memberTokenIdAPI with await', memberTokenIdAPI);
|
|
110
|
+
|
|
111
|
+
const baseUrlAPI = await wixLocation.baseUrl;
|
|
112
|
+
console.log('baseUrlAPI with await', baseUrlAPI);
|
|
113
|
+
|
|
108
114
|
if (!memberTokenId) {
|
|
109
115
|
showUnauthorizedState();
|
|
110
116
|
return;
|