sr-npm 1.7.190 → 1.7.191

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.190",
3
+ "version": "1.7.191",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/pages/homePage.js CHANGED
@@ -26,7 +26,6 @@ async function homePageOnReady(_$w,thisObject) {
26
26
  const items = await _$w('#citiesDataset').getItems(0, numOfItems);
27
27
  let baseUrl = await location.baseUrl();
28
28
  const linkUrl = `${baseUrl}/positions`;
29
- console.log("items#@#@$$#@#$$$#######");
30
29
  const markers = items.items.map(item => {
31
30
  const location = item.locationAddress.location;
32
31
  const cityName = encodeURIComponent(item.title); // Use the city name from the item
@@ -37,10 +36,8 @@ async function homePageOnReady(_$w,thisObject) {
37
36
  longitude: location.longitude
38
37
  },
39
38
  address: item.locationAddress.formatted,
40
- description: `View ${item.count} Open Positions`,
41
- title: item.title, // Show the actual city name in title
42
39
  link: cityLinkUrl,
43
- linkTitle:"shit"
40
+ linkTitle:`View ${item.count} Open Positions`
44
41
  };
45
42
  });
46
43
  //@ts-ignore