@everymatrix/player-profile-info 0.0.235 → 0.0.236

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": "@everymatrix/player-profile-info",
3
- "version": "0.0.235",
3
+ "version": "0.0.236",
4
4
  "main": "dist/player-profile-info.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "61a6a3f31e48f5f6865ef5aafdaa2091436ca9d5"
39
+ "gitHead": "43b4bf97936766e6e83c4522d412c4ff3049d9e2"
40
40
  }
@@ -171,9 +171,9 @@
171
171
  const getCountriesList = ():void => {
172
172
  fetch(`${endpoint}/player/countries`)
173
173
  .then((res:any) => res.json())
174
- .then(data => {
174
+ .then((data:any) => {
175
175
  countriesArray = data.countries;
176
- selectedCountry = countriesArray.find(country => country.Alpha2Code === countrycode);
176
+ selectedCountry = countriesArray.find((country:any) => country.Alpha2Code === countrycode);
177
177
  });
178
178
  }
179
179