gatsby-core-theme 1.4.1 → 1.4.2
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.4.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.4.1...v1.4.2) (2021-11-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* removed commented code in tracker ([0071494](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/00714945fc9737ffb90f79a2b068ac74ef450d34))
|
|
7
|
+
|
|
1
8
|
## [1.4.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v1.4.0...v1.4.1) (2021-11-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -49,9 +49,9 @@ const Tracker = ({
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
function redirect() {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
if (typeof window !== 'undefined' && !isStory) {
|
|
53
|
+
window.location.replace(tracker);
|
|
54
|
+
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
function manualRedirect(e) {
|