diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-18 11:33:13 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-18 11:33:13 -0700 |
commit | 35b73db9d2e2e023951799dc51d8bf44e7b4391b (patch) | |
tree | f7dd77431c79dc37a977fb443e5904eb4e3c8c7c /packages/browser/src/helpers/webAuthnError.ts | |
parent | aec8ec91988db498ec4ffdb9356feb3e9b0776c5 (diff) |
Fix linting issues in browser
Diffstat (limited to 'packages/browser/src/helpers/webAuthnError.ts')
-rw-r--r-- | packages/browser/src/helpers/webAuthnError.ts | 5 |
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; |