diff --git a/src/components/wallet/earn/ChainTransfer/ChainTransfer.vue b/src/components/wallet/earn/ChainTransfer/ChainTransfer.vue index 72a8bead6..15909e024 100644 --- a/src/components/wallet/earn/ChainTransfer/ChainTransfer.vue +++ b/src/components/wallet/earn/ChainTransfer/ChainTransfer.vue @@ -561,14 +561,13 @@ export default class ChainTransfer extends Vue { // Clear Form this.isSuccess = true let { dispatchNotification } = this.globalHelper() + this.$store.dispatch('Assets/updateUTXOs') + this.$store.dispatch('History/updateTransactionHistory') + dispatchNotification({ message: this.$t('notifications.chain_transfer_success'), type: 'success', }) - setTimeout(() => { - this.$store.dispatch('Assets/updateUTXOs') - this.$store.dispatch('History/updateTransactionHistory') - }, BALANCE_DELAY) } get canSubmit() { diff --git a/src/components/wallet/manage/MyKeys.vue b/src/components/wallet/manage/MyKeys.vue index 999aacc6c..da649efb3 100644 --- a/src/components/wallet/manage/MyKeys.vue +++ b/src/components/wallet/manage/MyKeys.vue @@ -28,7 +28,7 @@ - + @use '../../../styles/abstracts/mixins'; +.other-keys { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + .container { background-color: var(--bg-card); border: 1px solid var(--border-color);