Skip to content

Commit

Permalink
🐛 Fix mint bound watcher not working and invalid app condition checking
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Sep 23, 2023
1 parent 03ed8ae commit 94d0803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/MintPageContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class Min5PageContainer extends Vue {
get isUsingLikerLandApp() {
return this.walletType === 'likerland_app'
return this.walletType === 'liker-id'
}
get googleFormUrl() {
Expand Down
2 changes: 1 addition & 1 deletion pages/nft/iscn/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ export default class NFTTestMintPage extends Vue {
}
}
@Watch('maxMintAmount')
@Watch('maxMintAmount', { immediate: true })
onMaxMintAmount(max: number) {
if (this.mintAmount > max) {
this.mintAmount = max
Expand Down

0 comments on commit 94d0803

Please sign in to comment.