1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-27 13:49:10 +02:00

Remove console log

This commit is contained in:
Gastón Fournier 2023-02-02 19:05:25 +01:00
parent 92ecf80918
commit 33cf3e4e1e
No known key found for this signature in database
GPG Key ID: BC3E6CD5E81633B8

View File

@ -36,7 +36,6 @@ const toGraphData = (metrics?: RequestsPerSecondSchema) => {
?.map(result => {
const values = (result.values || []) as ResultValue[];
const data = values.filter(value => isRecent(value)) || [];
console.log('data', data);
let reqs = 0;
if (data.length) {
reqs = parseFloat(data[data.length - 1][1]);