og-statistics 3.0.2 → 3.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "og-statistics",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -156,7 +156,7 @@ const filterCards = (incidents, isHome) => {
156
156
  return acc;
157
157
  }, {});
158
158
 
159
- cards.fulltime = teamIncidents;
159
+ cards.timelapse = teamIncidents;
160
160
 
161
161
  return cards;
162
162
  };
@@ -174,7 +174,7 @@ const filterGoals = (incidents, isHome) => {
174
174
  return acc
175
175
  }, {});
176
176
 
177
- goles.full = teamIncidents;
177
+ goles.timelapse = teamIncidents;
178
178
  return goles;
179
179
  };
180
180