summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/helpers/webAuthnError.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser/src/helpers/webAuthnError.ts')
-rw-r--r--packages/browser/src/helpers/webAuthnError.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/browser/src/helpers/webAuthnError.ts b/packages/browser/src/helpers/webAuthnError.ts
index 5960821..3f25a54 100644
--- a/packages/browser/src/helpers/webAuthnError.ts
+++ b/packages/browser/src/helpers/webAuthnError.ts
@@ -29,11 +29,6 @@ export class WebAuthnError extends Error {
cause: Error;
name?: string;
}) {
- /**
- * `cause` is supported in evergreen browsers, but not IE10, so this ts-ignore is to
- * help Rollup complete the ES5 build.
- */
- // @ts-ignore
super(message, { cause });
this.name = name ?? cause.name;
this.code = code;