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

🔥 remove tabs from massmint #6459

Merged
merged 3 commits into from
Jul 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions components/massmint/Massmint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@
<NeoIcon icon="arrow-left" size="small" class="mr-1" />
{{ $t('massmint.backToOnbaording') }}
</NeoButton>
<div class="is-flex">
<TabItem
v-for="tab in tabs"
:key="tab"
:active="tab === 'Mass Mint'"
:text="tab"
:to="route.path"
:class="{ 'tab-nft': tab === 'NFT' }"
class="mobile-width" />
</div>
</section>
<hr class="m-0" />
<section
Expand Down Expand Up @@ -109,7 +99,6 @@ import { FileObject } from '@/composables/massmint/useZipValidator'
const preferencesStore = usePreferencesStore()
const { $consola, $i18n } = useNuxtApp()
const router = useRouter()
const route = useRoute()
const { urlPrefix } = usePrefix()

const selectedCollection = ref<MintedCollection>()
Expand Down Expand Up @@ -199,8 +188,6 @@ const startMint = () => {
)
}

const tabs = ['Collection', 'NFT', 'Mass Mint']

const onCollectionSelected = (collection) => {
selectedCollection.value = collection
}
Expand Down