Delete response files

This commit is contained in:
Gregory Schier
2023-04-14 12:17:11 -07:00
parent 19934a93bb
commit f7f7438c9e
6 changed files with 124 additions and 121 deletions

View File

@@ -18,8 +18,8 @@ export function DurationTag({ millis }: Props) {
}
return (
<>
<span title={`${millis} milliseconds`}>
{Math.round(num * 10) / 10} {unit}
</>
</span>
);
}

View File

@@ -21,8 +21,8 @@ export function SizeTag({ contentLength }: Props) {
}
return (
<>
<span title={`${contentLength} bytes`}>
{Math.round(num * 10) / 10} {unit}
</>
</span>
);
}