gatsby-core-theme 37.0.3 → 37.0.5

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,20 @@
1
+ ## [37.0.5](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v37.0.4...v37.0.5) (2024-08-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update pick keys to include author name ([3751e59](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/3751e595d429660099866fd81753c2e78555763b))
7
+
8
+
9
+ * Merge branch 'tm-4649-toplist' into 'master' ([994604f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/994604fa5d42f63936c26fcfbb5c9b01cd989f42))
10
+
11
+ ## [37.0.4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v37.0.3...v37.0.4) (2024-08-27)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * removed log and added eslint rule ([ff7d6cf](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ff7d6cffaeebdb4e73e27eb1dfe087779cab1ad2))
17
+
1
18
  ## [37.0.3](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v37.0.2...v37.0.3) (2024-08-27)
2
19
 
3
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "37.0.3",
3
+ "version": "37.0.5",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -23,7 +23,6 @@ const MarketDropdown = ({
23
23
  const selectMarketText = useTranslate("select_market", "Select Market");
24
24
  const defaultMarketText = useTranslate("defaultMarket", defaultMarket);
25
25
  const activeMarket = allMarkets[page.market] || "gb_en";
26
- console.log(activeMarket);
27
26
  const marketOptions = Object.keys(allMarkets).map((key) => [
28
27
  key,
29
28
  allMarkets[key],
@@ -34,7 +33,6 @@ const MarketDropdown = ({
34
33
  };
35
34
 
36
35
  activeMarket.market = page.market;
37
- console.log(activeMarket);
38
36
 
39
37
  useEffect(() => {
40
38
  function handleClickOutside(event) {
@@ -39,7 +39,10 @@ export const topListPickKeys = [
39
39
  'founded',
40
40
  'ribbons',
41
41
  'owner',
42
- 'support_types'
42
+ 'support_types',
43
+ 'authorName',
44
+ 'authorPath',
45
+ 'updatedAt'
43
46
  ];
44
47
 
45
48
  export const pickTrackerOperatorKeys = [
@@ -80,6 +80,10 @@ export function sanitizeOperatorData(
80
80
  clone.authorImageObject = operatorPage[0].author.image_object;
81
81
  }
82
82
 
83
+ if (operatorPage.length >= 1) {
84
+ clone.updatedAt = operatorPage[0].updated_at;
85
+ }
86
+
83
87
  // Set Logo Url
84
88
  clone.logo =
85
89
  operatorClone.logo_url_object ||