Skip to content

Commit

Permalink
Format number of conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmerle committed Feb 27, 2024
1 parent 4029e82 commit cfd0604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/visualizer/SandboxLogDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function SandboxLogDetail({
<Grid.Col span={12}>
{/* prettier-ignore */}
<Title order={5}>
Timestamp {formatNumber(state.timestamp)} • Profit / Loss: {formatNumber(profitLoss)} • Conversions: {conversions}
Timestamp {formatNumber(state.timestamp)} • Profit / Loss: {formatNumber(profitLoss)} • Conversions: {formatNumber(conversions)}
</Title>
</Grid.Col>
<Grid.Col span={{ xs: 12, sm: 4 }}>
Expand Down

0 comments on commit cfd0604

Please sign in to comment.