diff --git a/src/views/desktop/UnlockPage.vue b/src/views/desktop/UnlockPage.vue index 87fd1d42..4b392cc2 100644 --- a/src/views/desktop/UnlockPage.vue +++ b/src/views/desktop/UnlockPage.vue @@ -35,14 +35,6 @@ v-model="pinCode" @pincode:confirm="unlockByPin" /> - - - - {{ $t('Use on Mobile Device') }} - - - - @@ -99,7 +91,6 @@ - @@ -123,8 +114,7 @@ export default { data() { return { pinCode: '', - verifyingByWebAuthn: false, - showMobileQrCode: false + verifyingByWebAuthn: false }; }, computed: { diff --git a/src/views/mobile/UnlockPage.vue b/src/views/mobile/UnlockPage.vue index 7ebf7472..a23fdfbf 100644 --- a/src/views/mobile/UnlockPage.vue +++ b/src/views/mobile/UnlockPage.vue @@ -5,7 +5,7 @@ {{ $t('global.app.title') }} - + {{ $t('Unlock Application') }} @@ -16,19 +16,7 @@ - - - - - {{ $t('Switch to Desktop Version') }} - - - - - - - - + @@ -79,7 +67,6 @@ import { useExchangeRatesStore } from '@/stores/exchangeRates.js'; import assetConstants from '@/consts/asset.js'; import logger from '@/lib/logger.js'; import webauthn from '@/lib/webauthn.js'; -import { getDesktopVersionPath } from '@/lib/version.js'; import { isModalShowing } from '@/lib/ui.mobile.js'; export default { @@ -99,9 +86,6 @@ export default { version() { return 'v' + this.$version; }, - desktopVersionPath() { - return getDesktopVersionPath(); - }, allLanguages() { return this.$locale.getAllLanguageInfos(); },