gatsby-core-theme 21.0.2 → 21.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,20 @@
1
+ ## [21.0.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v21.0.3...v21.0.4) (2023-04-26)
2
+
3
+
4
+ ### Code Refactoring
5
+
6
+ * update operator banner cta type for w3c validator ([ba42c69](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ba42c69c6c0d0063e0d22d7410b655326a67b9a3))
7
+
8
+ ## [21.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v21.0.2...v21.0.3) (2023-04-26)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * geo targeting tracker page ([858b11e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/858b11e195a126b40bb67448c2d9c468c811596a))
14
+
15
+
16
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([8b8605a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/8b8605a8e771f25f1110717dd5b3457cfbcf22be))
17
+
1
18
  ## [21.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v21.0.1...v21.0.2) (2023-04-25)
2
19
 
3
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "21.0.2",
3
+ "version": "21.0.4",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -63,7 +63,6 @@ const Faq = ({ module, closeAll = false, openItem, closeOthers = false, icon = '
63
63
  <div
64
64
  onClick={() => toggle(index)}
65
65
  className={`${styles.title} faq-gtm`}
66
- type="button"
67
66
  ref={(el) => (btnRefs.current[index] = el)}
68
67
  >
69
68
  {icon && <span className={styles.circle}>{icon} </span>}
@@ -22,7 +22,7 @@ export default function TrackerGeo({
22
22
  operatorLogoHeight = '80',
23
23
  }) {
24
24
  const { page, operatorsByMarket } = pageContext;
25
- const operator = operatorsByMarket[Object.keys(operatorsByMarket)[0]];
25
+ const operator = operatorsByMarket[Object.keys(operatorsByMarket)[0]][0];
26
26
  const showSplashScreen = typeof window !== 'undefined';
27
27
 
28
28
  // eslint-disable-next-line no-shadow