Merge pull request #220 from JustinReact/bugfix/fix-upload-wallet

Fix bug with fetching wallet addresses in profile
This commit is contained in:
Phillip 2023-11-08 12:44:22 +02:00 committed by GitHub
commit 1d4d797bd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -348,8 +348,8 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
this.tagline = ''; this.tagline = '';
} }
fillAddress(coin) { async fillAddress(coin) {
const address = this.getSelectedWalletAddress(coin); const address = await this.getSelectedWalletAddress(coin);
if (address) { if (address) {
this.wallets = { this.wallets = {
...this.wallets, ...this.wallets,