gatsby-core-theme 22.0.2 → 22.0.4

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,24 @@
1
+ ## [22.0.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v22.0.3...v22.0.4) (2023-05-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * rage seo ([d0ada4c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d0ada4c34ffde6d3367646d408de047d9214467a))
7
+ * rage-seo error ([c35ccb7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/c35ccb788af9e4b5ce37853a094319fac9ff150a))
8
+
9
+
10
+ * Merge branch 'rage-seo-fix' into 'master' ([086c818](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/086c8184cc4b012222c9cb427e3aec1914cfef20))
11
+
12
+ ## [22.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v22.0.2...v22.0.3) (2023-05-16)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * fix for link list issue ([9f3dc28](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9f3dc289d8b018515ea0a0d12a35702ed6dedbe0))
18
+
19
+
20
+ * Merge branch 'fix-link-list' into 'master' ([47a572c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/47a572cd74f29337455f34472ac3f7d574fc1acf))
21
+
1
22
  ## [22.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v22.0.1...v22.0.2) (2023-05-15)
2
23
 
3
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "22.0.2",
3
+ "version": "22.0.4",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -46,7 +46,7 @@ const LinkList = ({
46
46
  <>
47
47
  {multiIcon ? icon : listIcon}
48
48
  <span>{item.title}</span>
49
- {item.image || (item.logo && <LinkImage />)}
49
+ {(item.image || item.logo) && <LinkImage />}
50
50
  </>
51
51
  )}
52
52
  {(item.image || item.logo) && imageOnly && <LinkImage />}
@@ -313,6 +313,7 @@ export default {
313
313
 
314
314
  // add responsible gaming to pages
315
315
  const gamingIds =
316
+ data.relations.dms_affiliate_settings.markets_data &&
316
317
  data.relations.dms_affiliate_settings.markets_data[market] &&
317
318
  data.relations.dms_affiliate_settings.markets_data[market].responsible_gaming_ids
318
319
  ? data.relations.dms_affiliate_settings.markets_data[market].responsible_gaming_ids