Skip to content

Commit

Permalink
fix assets issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zkLeonardo committed Jul 31, 2024
1 parent 751b35b commit 899cb58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DashboardS2/Tabs/Assets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ export default function Assets(props: IAssetsTableProps) {
<div className="list-header-item text-left">Token</div>
<div className="list-header-item text-center">Points Booster</div>
<div className="list-header-item text-center">Nova TVL</div>
<div className="list-header-item text-center">Your Deposit</div>
<div className="list-header-item text-center">Your Holding</div>
<div className="list-header-item">
<Input
data-hover={false}
Expand Down
3 changes: 2 additions & 1 deletion src/components/DashboardS2/Tabs/SectorHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ export default function SectorHeader({
<span className="value">
{formatNumberWithUnit(
(novaCategoryTotalPoints?.ecoPoints || 0) +
(novaCategoryTotalPoints?.referralPoints || 0)
(novaCategoryTotalPoints?.referralPoints || 0) +
(novaCategoryTotalPoints?.otherPoints || 0)
)}
</span>
</Tooltip>
Expand Down

0 comments on commit 899cb58

Please sign in to comment.