gatsby-core-theme 44.0.0 → 44.0.1
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/package.json +1 -1
- package/src/helpers/processor/index.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [44.0.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.0.0...v44.0.1) (2025-03-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* preview page bug fix ([9f4af0e](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9f4af0e497329efca1b637f4d146f5bfdf96d99e))
|
|
7
|
+
|
|
1
8
|
# [44.0.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v43.0.3...v44.0.0) (2025-03-12)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -404,7 +404,7 @@ export default {
|
|
|
404
404
|
}
|
|
405
405
|
|
|
406
406
|
// map countries with the author
|
|
407
|
-
data.authors = mapAuthorsWithCountries(data.authors, data.relations.countries)
|
|
407
|
+
data.authors = data.relations.countries ? mapAuthorsWithCountries(data.authors, data.relations.countries) : data.authors;
|
|
408
408
|
|
|
409
409
|
// Add multiple Page authors
|
|
410
410
|
transformedPages[market][pageType][index].allAuthors =
|