Skip to content

Commit

Permalink
quick number format
Browse files Browse the repository at this point in the history
  • Loading branch information
omranlm committed Oct 22, 2024
1 parent 7f21a90 commit d60e457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/landing/kpi/kpi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Kpi = () => {
{KPIs.map((kpi, id) => (
<div key={`kpi-${id}`} className={styles.kpiItem}>
<h1 className={`${isLoading ? "animate-pulse" : ""}`}>
{kpi.figure}
{kpi.figure?.toLocaleString()}
</h1>
<h3>{kpi.label}</h3>
</div>
Expand Down

0 comments on commit d60e457

Please sign in to comment.