We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7d2a7 commit 54967e5Copy full SHA for 54967e5
src/client/components/billing/CreditBalanceCard.tsx
@@ -49,7 +49,9 @@ export const CreditBalanceCard: React.FC<CreditBalanceCardProps> = React.memo(
49
{t('Loading...')}
50
</div>
51
) : (
52
- <div className="text-2xl font-semibold">{data?.credit ?? 0}</div>
+ <div className="text-2xl font-semibold">
53
+ {Number(data?.credit ?? 0).toLocaleString()}
54
+ </div>
55
)}
56
</CardContent>
57
</Card>
0 commit comments