1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Fix infinite rerender on network change while active signature request (#20473)

This commit is contained in:
OGPoyraz 2023-08-17 09:36:30 +02:00 committed by Mark Stacey
parent d847272f93
commit d5de0dd67e

View File

@ -1447,6 +1447,7 @@ export default class MetamaskController extends EventEmitter {
this.encryptionPublicKeyController.clearUnapproved(); this.encryptionPublicKeyController.clearUnapproved();
this.decryptMessageController.clearUnapproved(); this.decryptMessageController.clearUnapproved();
this.signatureController.clearUnapproved(); this.signatureController.clearUnapproved();
this.approvalController.clear();
}, },
); );