Skip to content

Commit

Permalink
Deselect 'my store' tab when seeing a collection (decentraland#518)
Browse files Browse the repository at this point in the history
* fix: deselect 'my store' tab when seeing a collection

* Update webapp/src/components/CollectionPage/CollectionPage.tsx

Co-authored-by: Juan Cazala <[email protected]>

* remove: unused import NavigationTab causing build error

* fix: formatting issue

Co-authored-by: Juan Cazala <[email protected]>
  • Loading branch information
nishit-g and cazala authored Jan 20, 2022
1 parent 43e56fb commit 76063e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webapp/src/components/CollectionPage/CollectionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { t } from 'decentraland-dapps/dist/modules/translation/utils'
import { Navbar } from '../Navbar'
import { Footer } from '../Footer'
import { Navigation } from '../Navigation'
import { NavigationTab } from '../Navigation/Navigation.types'
import { Props } from './CollectionPage.types'
import { Mana } from '../Mana'
import { formatMANA } from '../../lib/mana'
Expand All @@ -41,7 +40,7 @@ const CollectionPage = (props: Props) => {
return (
<div>
<Navbar isFullscreen />
<Navigation activeTab={NavigationTab.MY_STORE} />
<Navigation />
<Page className={styles.page}>
<CollectionProvider contractAddress={contractAddress} withItems>
{({ collection, items, isLoading }) => {
Expand Down

0 comments on commit 76063e7

Please sign in to comment.