From 0d6b420c9462b9b5bf7136a361db33ddcd6ee522 Mon Sep 17 00:00:00 2001 From: Brian Cleary Date: Fri, 20 Dec 2024 12:14:52 -0500 Subject: [PATCH] remove comment --- packages/iframe-stamper/src/index.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/iframe-stamper/src/index.ts b/packages/iframe-stamper/src/index.ts index 69611841..0ae1e971 100644 --- a/packages/iframe-stamper/src/index.ts +++ b/packages/iframe-stamper/src/index.ts @@ -193,12 +193,6 @@ export class IframeStamper { }); return new Promise((resolve, _reject) => { - /** - * The MessageChannel port1 property is the port that gets attached - * to the context that instantiated the MessageChannel. This class, the IframeStamper, - * instantied the MessageChannel and will use port1 to send messages to the iframe. - * See https://developer.mozilla.org/en-US/docs/Web/API/MessageChannel/port1 - */ this.messageChannel.port1.onmessage = (event) => { if (event.data?.type === IframeEventType.PublicKeyReady) { this.iframePublicKey = event.data["value"];