We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4368354 commit 0ec6d70Copy full SHA for 0ec6d70
apps/browser-extension-wallet/src/lib/scripts/background/cache-wallets-address.ts
@@ -36,5 +36,7 @@ export const cacheActivatedWalletAddressSubscription = (
36
walletManager: WalletManager<Wallet.WalletMetadata, Wallet.AccountMetadata>,
37
walletRepository: WalletRepository<Wallet.WalletMetadata, Wallet.AccountMetadata>
38
): void => {
39
- walletMetadataWithAddresses(walletManager, walletRepository).subscribe(walletRepository.updateWalletMetadata);
+ walletMetadataWithAddresses(walletManager, walletRepository).subscribe((updateProps) =>
40
+ walletRepository.updateWalletMetadata(updateProps)
41
+ );
42
};
0 commit comments