Delete response files

This commit is contained in:
Gregory Schier
2023-04-14 12:17:11 -07:00
parent 4a5b1f4da3
commit 7245e6e593
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>
);
}