gatsby-core-theme 30.0.1 → 30.0.2
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 +7 -0
- package/gatsby-node.mjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [30.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.1...v30.0.2) (2023-09-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* mulitple market issue for archive pages ([607af71](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/607af713c5ad6cb66716a8b3c83ad882d171ac0c))
|
|
7
|
+
|
|
1
8
|
## [30.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.0...v30.0.1) (2023-09-25)
|
|
2
9
|
|
|
3
10
|
|
package/gatsby-node.mjs
CHANGED
|
@@ -106,7 +106,7 @@ function createArchivePage(pageObject, marketSections, prefilledModules, createP
|
|
|
106
106
|
createPage({
|
|
107
107
|
path: page.path,
|
|
108
108
|
component: `${__dirname}${appName}`,
|
|
109
|
-
context: { page, marketSections, prefilledModules, siteInfo, translations },
|
|
109
|
+
context: { page, marketSections, prefilledModules, siteInfo, translations, allMarkets },
|
|
110
110
|
});
|
|
111
111
|
});
|
|
112
112
|
} else {
|
|
@@ -115,7 +115,7 @@ function createArchivePage(pageObject, marketSections, prefilledModules, createP
|
|
|
115
115
|
createPage({
|
|
116
116
|
path: page.path,
|
|
117
117
|
component: `${__dirname}${appName}`,
|
|
118
|
-
context: { page, marketSections, prefilledModules, siteInfo, translations },
|
|
118
|
+
context: { page, marketSections, prefilledModules, siteInfo, translations, allMarkets },
|
|
119
119
|
});
|
|
120
120
|
}
|
|
121
121
|
} else {
|
|
@@ -127,7 +127,7 @@ function createArchivePage(pageObject, marketSections, prefilledModules, createP
|
|
|
127
127
|
createPage({
|
|
128
128
|
path: page.path,
|
|
129
129
|
component: `${__dirname}${appName}`,
|
|
130
|
-
context: { page, marketSections, prefilledModules, siteInfo, translations },
|
|
130
|
+
context: { page, marketSections, prefilledModules, siteInfo, translations, allMarkets },
|
|
131
131
|
});
|
|
132
132
|
}
|
|
133
133
|
}
|