diff --git a/.gitignore b/.gitignore index 25caa2d0..bbe31466 100644 --- a/.gitignore +++ b/.gitignore @@ -23,7 +23,6 @@ public/content.js *.njsproj *.sln *.sw? -*.lock # Sentry Config File .env.sentry-build-plugin diff --git a/package.json b/package.json index eb651daa..3081506f 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,7 @@ "randombytes": "^2.1.0", "tailwind-merge": "^2.2.2", "tailwindcss-animate": "^1.0.7", - "vaul-vue": "^0.1.2", + "vaul-vue": "0.1.0", "vue": "^3.2.45", "vue-router": "^4.1.6" }, diff --git a/src/App.vue b/src/App.vue index e53ce26c..64b7e1ce 100644 --- a/src/App.vue +++ b/src/App.vue @@ -41,7 +41,7 @@ const backRouter = computed(() => {
diff --git a/src/components/AssetLogo.vue b/src/components/AssetLogo.vue index 58eb39ad..eb78109b 100644 --- a/src/components/AssetLogo.vue +++ b/src/components/AssetLogo.vue @@ -11,7 +11,7 @@ const { logo, chain, symbol } = defineProps<{ chain?: Chain symbol: string type: 'network' | 'activity' - flow?: 'Send' | 'Receive' | 'Transfer' + flow?: 'Send' | 'Receive' | 'Transfer' | string }>() diff --git a/src/components/FeeRateSelector.vue b/src/components/FeeRateSelector.vue index 97229dab..4c18a2f2 100644 --- a/src/components/FeeRateSelector.vue +++ b/src/components/FeeRateSelector.vue @@ -64,7 +64,7 @@ const selectCustom = () => { - + Select Fee Rate diff --git a/src/components/ResetModal.vue b/src/components/ResetModal.vue index ede19ca4..2287f061 100644 --- a/src/components/ResetModal.vue +++ b/src/components/ResetModal.vue @@ -60,20 +60,20 @@ const close = () => {
-

We will not store or help you retrieve your password.

+

We do not store or assist in recovering your password.

- If you forget your password, you can reset your wallet. It is also possible to re-import the wallet - using a mnemonic phrase or private key. + If you forget your password, you can reset the wallet. You can also re-import the wallet using the + mnemonic phrase or private key.

- Note that resetting the wallet without backup will permanently lose all assets. Before resetting, be - sure to back up all wallets. + Please note that resetting the wallet without backup will permanently lose all assets. Before + resetting, make sure to backup all wallets.

diff --git a/src/components/SeedPhrase.vue b/src/components/SeedPhrase.vue index a3a3e5ec..fa3cecce 100644 --- a/src/components/SeedPhrase.vue +++ b/src/components/SeedPhrase.vue @@ -13,16 +13,11 @@ defineProps({ type: Function, required: false, }, - noCopied: { - type: Boolean, - required: false, - default: false, - }, }) - - diff --git a/src/components/SwitchAddressModal.vue b/src/components/SwitchAddressModal.vue deleted file mode 100644 index cc5e8158..00000000 --- a/src/components/SwitchAddressModal.vue +++ /dev/null @@ -1,94 +0,0 @@ - - - diff --git a/src/components/index.ts b/src/components/index.ts index 155f5ef5..7173ca39 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -12,7 +12,6 @@ import DeleteWallet from './DeleteWallet.vue' import PasswordInput from './PasswordInput.vue' import FeeRateSelector from './FeeRateSelector.vue' import VerifySeedPhrase from './VerifySeedPhrase.vue' -import SwitchAddressModal from './SwitchAddressModal.vue' import AddressTypeSelector from './AddressTypeSelector.vue' export { @@ -31,5 +30,4 @@ export { Avatar, LoadingIcon, DeleteWallet, - SwitchAddressModal } diff --git a/src/components/ui/drawer/DrawerContent.vue b/src/components/ui/drawer/DrawerContent.vue index 6be17d0b..30051ca8 100644 --- a/src/components/ui/drawer/DrawerContent.vue +++ b/src/components/ui/drawer/DrawerContent.vue @@ -13,15 +13,18 @@ const forwarded = useForwardPropsEmits(props, emits)