Skip to content

Commit

Permalink
Added comma to signature count. Fixes #108
Browse files Browse the repository at this point in the history
  • Loading branch information
alsoknownaslj committed Mar 9, 2023
1 parent 23d2d4c commit 16d8f2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ export function SignatureCount() {
{ retry: false, refetchInterval: 60000 }
);

return <>{data?.signatureCount ?? <>&nbsp;</>}</>;
return <>{data?.signatureCount.toLocaleString() ?? <>&nbsp;</>}</>;
}

0 comments on commit 16d8f2d

Please sign in to comment.