gatsby-core-theme 44.4.3 → 44.4.5

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,25 @@
1
+ ## [44.4.5](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.4...v44.4.5) (2025-07-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * build failing for lack of string checks ([2087f9f](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/2087f9f05b7b45b13c381361a991a9c4f59515a2))
7
+
8
+ ## [44.4.4](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.3...v44.4.4) (2025-07-10)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add toplist bonus on pick keys ([cc91b91](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/cc91b917f588e20f663ec465868389b722fff130))
14
+ * cookie fix ([74f0fd0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/74f0fd0bbae215e0f14ef78ce115c38653562e70))
15
+ * get latest changes ([e33235f](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/e33235f8b13b37c0543bd781de2c8f1ad59d927a))
16
+ * remove unecessary console warn ([1a8d298](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/1a8d2988fd28ca594930606d4d43d0e2e0538348))
17
+ * test for undefined string ([80caf93](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/80caf93d73562619d0bdc2b0c67c020e01658a36))
18
+
19
+
20
+ * Merge branch 'cookie-fix-issue' into 'master' ([02257f2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/02257f2911238a4d8521f4f57170724af387feaf))
21
+ * Merge branch 'tm-5539-promo-code' into 'master' ([856a59c](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/856a59ce0bf5dc59f04300de8e57493418caed06))
22
+
1
23
  ## [44.4.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.2...v44.4.3) (2025-07-09)
2
24
 
3
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.4.3",
3
+ "version": "44.4.5",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -52,7 +52,7 @@ const CookieConsent = ({
52
52
  };
53
53
 
54
54
  useEffect(() => {
55
- if (typeof window !== `undefined` && getCookie('showCookie') !== false) {
55
+ if (typeof window !== `undefined` && getCookie('showCookie') !== "false") {
56
56
  setShowCookieConsent(true);
57
57
  }
58
58
  }, []);
@@ -131,6 +131,7 @@ export const pickRelationKeys = {
131
131
  'average_withdrawal_times',
132
132
  'best_game',
133
133
  'rating_comments',
134
+ 'toplist_bonus'
134
135
  ],
135
136
  operator_simplified: [
136
137
  "short_name",
@@ -94,7 +94,7 @@ export function removeDuplicates(list, key) {
94
94
  }
95
95
 
96
96
  export function removeTags(str) {
97
- if (str === null || str === '') return '';
97
+ if (str === null || str === '' || !str) return '';
98
98
  return str.toString().replace(/(<([^>]+)>)/gi, '');
99
99
  }
100
100