gatsby-core-theme 44.13.2 → 44.13.3
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/resolver/common.mjs +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [44.13.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.13.2...v44.13.3) (2026-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update limit constant ([8b863c7](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/8b863c7a0545e1369fddb4517e67a88864ce19f5))
|
|
7
|
+
|
|
1
8
|
## [44.13.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.13.1...v44.13.2) (2026-02-05)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/resolver/common.mjs
CHANGED
|
@@ -4,7 +4,6 @@ import { pickPageKeys, pickRelationKeys } from '../constants/pick-keys.mjs';
|
|
|
4
4
|
import settings from '../constants/settings.mjs';
|
|
5
5
|
// eslint-disable-next-line import/no-cycle
|
|
6
6
|
import { processExtraFields } from './index.mjs';
|
|
7
|
-
import { mainSettings } from '../constants/site-settings/main.mjs';
|
|
8
7
|
|
|
9
8
|
const { pick } = loadash;
|
|
10
9
|
|
|
@@ -142,7 +141,7 @@ export function clean(object) {
|
|
|
142
141
|
}
|
|
143
142
|
|
|
144
143
|
export function removeUnwantedSections(obj, pageType, ribbonsData) {
|
|
145
|
-
const limit =
|
|
144
|
+
const limit = process.env.RECOMMENDED_CASINOS_NUMBER || 3;
|
|
146
145
|
const marketSection = {
|
|
147
146
|
games: ["post_main_games"],
|
|
148
147
|
operator: [
|