@salesforcedevs/dx-components 1.14.3-alpha2 → 1.14.3-alpha3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "1.14.3-alpha2",
3
+ "version": "1.14.3-alpha3",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -60,6 +60,8 @@ class UrlWatcher {
60
60
  });
61
61
 
62
62
  if (response.status >= 300 && response.status < 400) {
63
+ // eslint-disable-next-line no-alert
64
+ alert("redirecting to " + window.location.href);
63
65
  // eslint-disable-next-line no-self-assign
64
66
  window.location.href = window.location.href;
65
67
  }