Skip to content

Commit

Permalink
Merge pull request #16 from dylsteck/main
Browse files Browse the repository at this point in the history
fix: comma-separate hub messages number
  • Loading branch information
MrKevinOConnell authored Jun 27, 2024
2 parents 85644e9 + 32726ea commit c610075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/hubs-data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const HubsDataComponent = () => {
<div>
{hub.dbStats.numMessages !== null ? (
<p className="text-center font-bold">
{hub?.dbStats?.numMessages}
{hub?.dbStats?.numMessages.toLocaleString()}
</p>
) : (
<p className="text-center">Loading...</p>
Expand Down

0 comments on commit c610075

Please sign in to comment.