Skip to content

Commit

Permalink
πŸ‘” Change wnft default mint amount to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Mar 14, 2024
1 parent 0b86ca0 commit fc53688
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/nft/iscn/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ export enum MintState {
DONE = ''
}
const DEFAULT_MINT_AMOUNT = 32
@Component({
fetch({ params, redirect }) {
if (!params.iscnId) {
Expand Down Expand Up @@ -262,7 +264,7 @@ export default class NFTMintPage extends Vue {
txStatus: string = ''
reserveNft: number = 0
mintAmount: number = this.maxMintAmount
mintAmount: number = Math.min(this.maxMintAmount, DEFAULT_MINT_AMOUNT)
initialBatch: number = 6
shouldShowNoUrlWarning: boolean = false
Expand Down

0 comments on commit fc53688

Please sign in to comment.