diff --git a/components/AppHeader.vue b/components/AppHeader.vue index 5549927e..f3bb2d5c 100644 --- a/components/AppHeader.vue +++ b/components/AppHeader.vue @@ -93,14 +93,14 @@ :title="currentAddress" >
- - - + +
diff --git a/components/MintPageContainer.vue b/components/MintPageContainer.vue index 754c02f9..1c75b0ec 100644 --- a/components/MintPageContainer.vue +++ b/components/MintPageContainer.vue @@ -49,8 +49,8 @@
- - + +
@@ -72,8 +72,12 @@ export default class Min5PageContainer extends Vue { @Prop({ default: false }) readonly isStateTransaction: boolean | undefined + get isUsingMobileApp() { + return this.walletType?.includes('mobile') || this.walletType?.includes('walletconnect') || this.isUsingLikerLandApp + } + get isUsingLikerLandApp() { - return this.walletType === 'liker-id' + return this.walletType === 'likerland-app' } get googleFormUrl() { diff --git a/locales/en.json b/locales/en.json index f2dfe51e..5ccdc063 100644 --- a/locales/en.json +++ b/locales/en.json @@ -273,7 +273,7 @@ "IscnUploaded.button.new": "Register Another ISCN", "IscnUploaded.guide.title": "Completed! Here is your ISCN", "IscnUploaded.title": "ISCN Registerd", - "NFTPortal.attention.openApp": "You have connected with WalletConnect. Please approve the transaction in Liker Land app.", + "NFTPortal.attention.openApp": "You have connected with WalletConnect. Please approve the transaction in wallet app.", "NFTPortal.button.create": "Create", "NFTPortal.button.collect": "Collect Now", "NFTPortal.button.convertToIscn": "Convert Content to Writing NFT", diff --git a/pages/nft/iscn/_iscnId.vue b/pages/nft/iscn/_iscnId.vue index 3a8277e8..df177cd4 100644 --- a/pages/nft/iscn/_iscnId.vue +++ b/pages/nft/iscn/_iscnId.vue @@ -424,12 +424,16 @@ export default class NFTMintPage extends Vue { return getNftModelApi(this.classId); } + get isUsingMobileApp() { + return this.walletType?.includes('mobile') || this.walletType?.includes('walletconnect') || this.isUsingLikerLandApp + } + get isUsingLikerLandApp() { - return this.walletType === 'liker-id' + return this.walletType === 'likerland-app' } get isTransactionSizeLimited() { - return this.isUsingLikerLandApp + return this.isUsingMobileApp } get createNftClassPayload() {