Skip to content

Commit 77fec0e

Browse files
committed
Remove duplicated math round
1 parent 94390a6 commit 77fec0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Resources/AgentLatency.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const AgentLatency: FC<{ agent: WorkspaceAgent }> = ({ agent }) => {
4747
aria-label="latency"
4848
css={{ cursor: "pointer", color: latency.color }}
4949
>
50-
{Math.round(Math.round(latency.latency_ms))}ms
50+
{Math.round(latency.latency_ms)}ms
5151
</span>
5252
</HelpTooltipTrigger>
5353
<HelpTooltipContent>

0 commit comments

Comments
 (0)