diff --git a/agenta-web/src/lib/helpers/formatters.ts b/agenta-web/src/lib/helpers/formatters.ts index 34caa04736..f6e2bae571 100644 --- a/agenta-web/src/lib/helpers/formatters.ts +++ b/agenta-web/src/lib/helpers/formatters.ts @@ -17,5 +17,5 @@ export const formatCurrency = (value = 0) => { } export const formatLatency = (value = 0) => { - return `${intlNumber.format(value / 1000)}s` + return `${Math.round(value * 1000)}ms` }