@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/eidLogin.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-shop",
3
- "version": "6.4.3",
3
+ "version": "6.4.4",
4
4
  "description": "The description that will amaze and astound your audience when they read it",
5
5
  "main": "src/shop.js",
6
6
  "scripts": {
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) {