gatsby-matrix-theme 10.0.13 → 10.0.14

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,11 @@
1
+ ## [10.0.14](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.13...v10.0.14) (2023-01-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * form ([fbbda88](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/fbbda8881a2ce94692807cef5c576199f60a5cf5))
7
+ * operator cards table ([f7f9055](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/f7f9055751386b0bcf91e6d79cf0268d09e433e9))
8
+
1
9
  ## [10.0.13](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.12...v10.0.13) (2023-01-17)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "10.0.13",
3
+ "version": "10.0.14",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -13,16 +13,19 @@ const CasinosTable = ({ module, page }) => {
13
13
  const { items } = module || {};
14
14
 
15
15
  const oneLiner = ({ one_liner }) => {
16
- const [firstLine, secondLine] = one_liner.split('+');
17
- return (
18
- <>
19
- <span className={styles.firstLine}>
20
- {firstLine}
21
- <br />
22
- </span>
23
- {secondLine && <span className={styles.secondLine}>{`+${secondLine}`}</span>}
24
- </>
25
- );
16
+ if (one_liner) {
17
+ const [firstLine, secondLine] = one_liner.split('+');
18
+ return (
19
+ <>
20
+ <span className={styles.firstLine}>
21
+ {firstLine}
22
+ <br />
23
+ </span>
24
+ {secondLine && <span className={styles.secondLine}>{`+${secondLine}`}</span>}
25
+ </>
26
+ );
27
+ }
28
+ return <></>;
26
29
  };
27
30
 
28
31
  return (
@@ -29,6 +29,8 @@ const Newsletter = ({ page, openBtnText = 'Unlock Bonuses', footer = false, isSt
29
29
  setIsClicked(true);
30
30
  };
31
31
 
32
+ // form
33
+
32
34
  return (
33
35
  <div
34
36
  ref={newsletterFloatingContainer}