fix check spread

This commit is contained in:
Alex Holliday
2025-01-01 17:11:38 -08:00
parent 86d11c7277
commit 69f7cf2ab1

View File

@@ -79,7 +79,7 @@ const NormalizeDataUptimeDetails = (checks, rangeMin, rangeMax) => {
return normalizedChecks;
} else {
return checks.map((check) => {
return { ...check._doc, originalResponseTime: check.responseTime };
return { ...check, originalResponseTime: check.responseTime };
});
}
};