Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung authored Jan 1, 2024
1 parent 128c308 commit e33428b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ const TeamGames = ({ teamId, limit }: { teamId: string; limit: number }) => {
<TableCell align="right">
{row.result === 'W' && '+'}
{row.result === 'L' && '-'}
{Math.floor(row.delta)}{' '}
{row.delta.toFixed(1)}{' '}
</TableCell>
</TableRow>
))}
Expand Down

0 comments on commit e33428b

Please sign in to comment.