Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Remove some previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
nenadV91 committed Mar 22, 2022
1 parent 3232d09 commit ee2f53d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/custom/pages/Profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export default function Profile() {
const vCowBalanceUnvested = formatSmartLocaleAware(unvested, AMOUNT_PRECISION) || '0'
const vCowBalance = formatSmartLocaleAware(total, AMOUNT_PRECISION) || '0'

const hasCowBalance = !cow?.equalTo(0)
const hasVCowBalance = !total?.equalTo(0)
const hasCowBalance = cow && !cow.equalTo(0)
const hasVCowBalance = total && !total.equalTo(0)

const tooltipText = {
balanceBreakdown: (
Expand Down

0 comments on commit ee2f53d

Please sign in to comment.