Skip to content

Commit 521eee5

Browse files
committed
fix(web-extension): correct updateMetadata props type
1 parent 19de370 commit 521eee5

File tree

1 file changed

+2
-2
lines changed
  • packages/web-extension/src/walletManager/WalletRepository

1 file changed

+2
-2
lines changed

packages/web-extension/src/walletManager/WalletRepository/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export interface WalletRepositoryApi<WalletMetadata extends {}, AccountMetadata
5252
): Promise<UpdateWalletMetadataProps<WalletMetadata>>;
5353

5454
updateAccountMetadata(
55-
props: UpdateWalletMetadataProps<AccountMetadata>
56-
): Promise<UpdateWalletMetadataProps<AccountMetadata>>;
55+
props: UpdateAccountMetadataProps<AccountMetadata>
56+
): Promise<UpdateAccountMetadataProps<AccountMetadata>>;
5757

5858
/** Rejects with WalletConflictError when account is not found. */
5959
removeAccount(props: RemoveAccountProps): Promise<RemoveAccountProps>;

0 commit comments

Comments
 (0)