gatsby-core-theme 44.4.15 → 44.4.16

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.4.16](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.15...v44.4.16) (2025-07-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * show cards in post main ([7e3f362](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/7e3f362a98d96f9bd263d56733323c5fb8f9e233))
7
+
1
8
  ## [44.4.15](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.14...v44.4.15) (2025-07-17)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.4.15",
3
+ "version": "44.4.16",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -2,13 +2,13 @@
2
2
  // eslint-disable-next-line import/prefer-default-export
3
3
  import { excludeStatusInactiveToplist } from '../constants/excluded.mjs';
4
4
 
5
- export default function checkForInactiveOperatorToplist(item, status) {
5
+ export default function checkForInactiveOperatorToplist(item, status, res) {
6
6
  const shortCode = item && item.items && item.items.length && item.items[0].value;
7
7
  const siteName = process.env.GATSBY_SITE_NAME;
8
8
  const excludeStatus = excludeStatusInactiveToplist[siteName] || excludeStatusInactiveToplist.default;
9
9
  if (
10
10
  ((item.name === "top_list" && shortCode === "inactive_operator_toplist" && excludeStatus.includes(status)) ||
11
- (item.name === "cards_v2" && status === "active"))
11
+ (item.name === "cards_v2" && status === "active" && res === "pre_main_operators"))
12
12
  ) {
13
13
  return true;
14
14
  }