Skip to content

Commit

Permalink
Merge pull request sushiswap#888 from sushiswap/fix/portfolio-nova
Browse files Browse the repository at this point in the history
fix: don't show portfolio on nova
  • Loading branch information
matthewlilley authored Aug 10, 2022
2 parents 371a3ec + 951337f commit 9f708b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/useMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ const useMenu: UseMenu = () => {
menu.push(analyticsMenu)
}

if (account) {
if (account && chainId !== ChainId.ARBITRUM_NOVA) {
const portfolio = {
key: 'portfolio',
title: i18n._(t`Portfolio`),
Expand Down

0 comments on commit 9f708b2

Please sign in to comment.