Skip to content

Commit

Permalink
Merge pull request #346 from zkLinkProtocol/fix/sector-issue
Browse files Browse the repository at this point in the history
fix assets issue
  • Loading branch information
MickWang authored Jul 31, 2024
2 parents 751b35b + 899cb58 commit b811e1c
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 b811e1c

Please sign in to comment.