Skip to content

Commit

Permalink
fix(ui): duration component should div not mult
Browse files Browse the repository at this point in the history
ms -> s
  • Loading branch information
agilgur5 committed May 12, 2024
1 parent 53189d0 commit fd135f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/duration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import * as React from 'react';
import { formatDuration } from '../../v2';

export function Duration(props: {durationMs: number}) {
return <span>{formatDuration(props.durationMs * 1000)}</span>;
return <span>{formatDuration(props.durationMs / 1000)}</span>;
}

0 comments on commit fd135f7

Please sign in to comment.