> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordMfaWebAuthnPlatformChallengeReportErrorOptions

ReportBrowserErrorOptions

```ts Example theme={null}
export interface ReportBrowserErrorOptions {
  /**
   * The error object from the WebAuthn API. This typically is a `DOMException`.
   * The SDK expects an object with at least `name` and `message` properties.
   * @type {WebAuthnErrorDetails}
   * @example { name: "NotAllowedError", message: "The operation was cancelled by the user." }
   */
  error: WebAuthnErrorDetails;
}
```

## Properties

<ParamField body="error" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/WebAuthnErrorDetails">WebAuthnErrorDetails</a></span>}>
  The error object from the WebAuthn API (`navigator.credentials.get()`)
  to be reported. Must include `name` and `message`.
</ParamField>
