Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: display all available chains & check wallet VM when buying / minting nft #10720

Merged
merged 13 commits into from
Aug 22, 2024
2 changes: 1 addition & 1 deletion components/common/ChainDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const props = withDefaults(

const route = useRoute()
const { setUrlPrefix, urlPrefix } = usePrefix()
const allChains = useAvailableChainsOptions()
const { availableChains: allChains } = useChain()
const { redirectAfterChainChange } = useChainRedirect()
const { isMobile } = useViewport()

Expand Down
2 changes: 1 addition & 1 deletion components/navbar/ChainSelectDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { getChainNameByPrefix } from '@/utils/chain'

const { redirectAfterChainChange } = useChainRedirect()
const { urlPrefix, setUrlPrefix } = usePrefix()
const options = useAvailableChainsOptions()
const { availableChains: options } = useChain()

const selected = computed({
get: () => urlPrefix.value,
Expand Down
8 changes: 0 additions & 8 deletions composables/useAvailableChainsOptions.ts

This file was deleted.

Loading