Return raw value instead of formatted string

This commit is contained in:
Alex Holliday
2024-09-03 14:52:00 -07:00
parent 99b4da347f
commit 64fe1a3af5
+1 -1
View File
@@ -214,7 +214,7 @@ const getMonitorAggregateStats = async (monitorId, dateRange) => {
day: group.day,
totalChecks,
totalIncidents,
avgResponseTime: `${avgResponseTime.toFixed(2)}ms`,
avgResponseTime,
};
});