Skip to content

Commit

Permalink
Remove dashboard numbers humanization
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBartusek committed Feb 27, 2024
1 parent 991c1cb commit 1d1871d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/components/Pages/DashboardHomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ function DashboardHomePage() {
<div className="flex flex-col gap-8">
<div className="flex flex-col gap-8 lg:flex-row">
<BigNumberCard title="Count of all products">
{Utils.humanizeNumber(organization.stats.totalProducts, 0)}
{organization.stats.totalProducts}
</BigNumberCard>
<BigNumberCard title="Total organization value">
<Currency>{organization.stats.totalValue}</Currency>
</BigNumberCard>
<BigNumberCard title="Total inventory quantity">
{Utils.humanizeNumber(organization.stats.totalQuantity, 0)}
{organization.stats.totalQuantity}
</BigNumberCard>
</div>
<div className="flex flex-col gap-8 xl:flex-row">
Expand Down

0 comments on commit 1d1871d

Please sign in to comment.