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"];