···153153 const updates = report.statusReportUpdates.sort(
154154 (a, b) => a.date.getTime() - b.date.getTime(),
155155 );
156156+ if (updates.length === 0) return;
157157+156158 const firstUpdate = updates[0];
157159 const lastUpdate = updates[updates.length - 1];
158158- if (!firstUpdate?.date || firstUpdate.date < pastThreshod) return;
160160+161161+ // NOTE: we don't check threshold here because we display all unresolved reports
162162+ if (!firstUpdate?.date) return;
159163160164 // HACKY: LEGACY: we shouldn't have report.status anymore and instead use the update status for that.
161165 // Ideally, we could replace the status with "downtime", "degraded", "operational" to indicate the gravity of the issue