gatsby-core-theme 30.0.77 → 30.0.78
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
|
+
## [30.0.78](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.77...v30.0.78) (2024-02-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* enabled/disable splash screen ([cd41f81](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cd41f8172001be81e8d218925b7039cb9a21f938))
|
|
7
|
+
|
|
1
8
|
## [30.0.77](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.76...v30.0.77) (2024-02-12)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ const Tracker = ({
|
|
|
28
28
|
const { operator, page, translations } = pageContext;
|
|
29
29
|
|
|
30
30
|
const disableSplashScreen =
|
|
31
|
-
Boolean(getExtraField(operator.extra_fields, 'disable_splash_screen')) || false;
|
|
31
|
+
Boolean(Number(getExtraField(operator.extra_fields, 'disable_splash_screen'))) || false;
|
|
32
32
|
const tracker = getTrackerName(operator, page, path);
|
|
33
33
|
|
|
34
34
|
function redirect() {
|