gatsby-core-theme 44.23.1 → 44.23.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [44.23.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.23.1...v44.23.2) (2026-05-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add strong text ([9db12c2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9db12c262cf88510608ecf3d26f78a083631fd67))
7
+
1
8
  ## [44.23.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.23.0...v44.23.1) (2026-05-04)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.23.1",
3
+ "version": "44.23.2",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -90,7 +90,7 @@ export default function TemplateOne({
90
90
  <span>
91
91
  {item?.odds_text}
92
92
  {item?.odds_text && item?.odds_value ? ": " : ""}
93
- {item?.odds_value}
93
+ <strong>{item?.odds_value}</strong>
94
94
  </span>
95
95
  </div>
96
96
  )}
@@ -142,7 +142,7 @@ export default function TemplateTwo({
142
142
  <span>
143
143
  {item?.odds_text}
144
144
  {item?.odds_text && item?.odds_value ? ": " : ""}
145
- {item?.odds_value}
145
+ <strong>{item?.odds_value}</strong>
146
146
  </span>
147
147
  </div>
148
148
  )}