Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleJu committed Dec 7, 2024
1 parent 6d17a13 commit fe7d2dd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions frontend/src/static/js/components/webstatus-stats-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,8 @@ export class StatsPage extends LitElement {
await Promise.all(promises); // Wait for all browsers to finish
}

async _fetchMissingOneImplemenationCounts(
apiClient: APIClient,
startDate: Date,
endDate: Date,
) {
// TODO: Finish this method with real data.
async _fetchMissingOneImplemenationCounts() {
const browserReleaseFeatureMetric: BrowserReleaseFeatureMetric = {
count: 8,
timestamp: new Date(Date.now() - 200 * 24 * 60 * 60 * 1000).toISOString(),
Expand Down Expand Up @@ -223,6 +220,7 @@ export class StatsPage extends LitElement {
startDate,
endDate,
);
await this._fetchMissingOneImplemenationCounts();
return this.globalFeatureSupport;
},
});
Expand Down

0 comments on commit fe7d2dd

Please sign in to comment.