Skip to content

Commit

Permalink
Update for build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattupham committed Aug 10, 2024
1 parent 8327571 commit a750c84
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/web/components/table/asset-balances.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,13 @@ export const AssetBalancesTable: FunctionComponent<{
</tr>
)}
{virtualRows.map((virtualRow) => {
const pushUrl = `/assets/${
rows?.[virtualRow.index].original?.coinDenom ?? ""
}?ref=portfolio`;
const pushUrl = rows?.[virtualRow.index]?.original?.coinDenom
? `/assets/${
rows?.[virtualRow.index]?.original?.coinDenom ?? ""
}?ref=portfolio`
: "/assets/?ref=portfolio";
const unverified =
!rows?.[virtualRow.index].original?.isVerified &&
!rows?.[virtualRow.index]?.original?.isVerified &&
!showUnverifiedAssets;

return (
Expand Down

0 comments on commit a750c84

Please sign in to comment.