gatsby-core-theme 44.2.19 → 44.2.20

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,13 @@
1
+ ## [44.2.20](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.19...v44.2.20) (2025-06-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * typo ([68823f3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/68823f353806c946ff9602e61f9046c77d6fcd1c))
7
+
8
+
9
+ * Merge branch 'fix-typo' into 'master' ([1cbb641](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/1cbb641c00625d0d84668bc74e6c8249cd06d5c3))
10
+
1
11
  ## [44.2.19](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.2.18...v44.2.19) (2025-06-24)
2
12
 
3
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.2.19",
3
+ "version": "44.2.20",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -71,7 +71,8 @@ export default function FloatingArea({
71
71
 
72
72
  return (
73
73
  <div className={`${styles.floatingArea} ${showScroll ? styles.show : ""}`}>
74
- {pageTypes?.[pageTemplate]?.showScrollToTop || pageTypes.default?.showScrollToTop && <ScrollToTop />}
74
+ {(pageTypes?.[pageTemplate]?.showScrollToTop ||
75
+ pageTypes.default?.showScrollToTop) && <ScrollToTop />}
75
76
  {OperatorBanner && (
76
77
  <Suspense fallback={<></>}>
77
78
  <OperatorBanner
@@ -87,27 +88,26 @@ export default function FloatingArea({
87
88
  </Suspense>
88
89
  )}
89
90
 
90
- {CookieConsent &&
91
- showCookies && (
92
- <CookieConsent
93
- market={pageContext?.page?.market}
94
- type={pageType}
95
- template={template}
96
- settingsCookie
97
- isPageHomepage={isPageHomepage}
98
- >
99
- {
100
- customCookieContent || <p>
101
- We use cookies in order to optimise our site and improve your
102
- experience with us. By using the site you consent to our
103
- <a href="/cookies" className="cookie-consent-gtm">
104
- Cookie Policy
105
- </a>
106
- .
107
- </p>
108
- }
109
- </CookieConsent>
110
- )}
91
+ {CookieConsent && showCookies && (
92
+ <CookieConsent
93
+ market={pageContext?.page?.market}
94
+ type={pageType}
95
+ template={template}
96
+ settingsCookie
97
+ isPageHomepage={isPageHomepage}
98
+ >
99
+ {customCookieContent || (
100
+ <p>
101
+ We use cookies in order to optimise our site and improve your
102
+ experience with us. By using the site you consent to our
103
+ <a href="/cookies" className="cookie-consent-gtm">
104
+ Cookie Policy
105
+ </a>
106
+ .
107
+ </p>
108
+ )}
109
+ </CookieConsent>
110
+ )}
111
111
  {FooterNavigation && (
112
112
  <Suspense fallback={<></>}>
113
113
  <FooterNavigation section={footerNavigationData} />