@nuskin/ns-shop 6.4.3 → 6.4.4
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/src/eidLogin.js +1 -1
package/package.json
CHANGED
package/src/eidLogin.js
CHANGED
|
@@ -27,7 +27,7 @@ const eidLogin = () => {
|
|
|
27
27
|
if (user && Base64.decode(queryObject.eid).indexOf(user.id) >= 0) {
|
|
28
28
|
user.eid = queryObject.eid;
|
|
29
29
|
UserService.setUser(user);
|
|
30
|
-
window.location = redirect + (extraQueryParams.length > 0 ? '?' + extraQueryParams.substr(1) : ''); // user already logged in, redirect to self minus eid and redirectUrl
|
|
30
|
+
window.location = redirect + (extraQueryParams.length > 0 ? '?' + extraQueryParams.substr(1) : '') + hashValue; // user already logged in, redirect to self minus eid and redirectUrl
|
|
31
31
|
} else {
|
|
32
32
|
let configPathParam = "";
|
|
33
33
|
if ((typeof nuskin !== 'undefined') && nuskin.configurationPath) {
|