gatsby-matrix-theme 49.0.11 → 49.0.13

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,17 @@
1
+ ## [49.0.13](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v49.0.12...v49.0.13) (2024-08-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated core version ([9ef67b6](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/9ef67b6fe8980cbe64b011613659be7cd636693a))
7
+
8
+ ## [49.0.12](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v49.0.11...v49.0.12) (2024-08-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * updated core version ([ce037d7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/ce037d7107c0f1e54d5bc575621b09f5083de273))
14
+
1
15
  ## [49.0.11](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v49.0.10...v49.0.11) (2024-08-21)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "49.0.11",
3
+ "version": "49.0.13",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "gatsby": "^5.11.0",
28
- "gatsby-core-theme": "36.0.2",
28
+ "gatsby-core-theme": "36.0.4",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "prop-types": "15.7.2",
@@ -133,7 +133,7 @@ const Main = ({
133
133
  </Suspense>
134
134
  )}
135
135
 
136
- {section.modules &&
136
+ {section && section.modules &&
137
137
  section.modules.map((module, index) => (
138
138
  <Module
139
139
  key={keygen()}
@@ -95,7 +95,7 @@ function Body({ pageContext, children, serverData }) {
95
95
  {showExclusiveOperator && (
96
96
  <ExclusiveOperator bonus={excOperator} template={pageContext?.page?.template} />
97
97
  )}
98
- {main && !children && (
98
+ {!children && (
99
99
  <Main
100
100
  exclOperator={showExclusiveOperator}
101
101
  section={main}