> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordMfaWebAuthnRoamingChallengeShowErrorOptions

ShowErrorOptions

```ts Example theme={null}
export interface ShowErrorOptions {
  /**
   * `navigator.credentials.get()` の呼び出しが失敗した際にキャプチャされたエラーオブジェクト。
   * DOMException の `name` および `message` プロパティを少なくとも含む必要があります。
   * @type {WebAuthnErrorDetails}
   * @example { name: "NotAllowedError", message: "The operation was aborted by the user." }
   */
  error: WebAuthnErrorDetails;

  /**
   * 省略可能。`true` の場合、かつ画面コンテキスト（`screen.showRememberDevice`）が
   * デバイスの記憶を選択肢として示している場合、このブラウザ/デバイスを記憶するという
   * ユーザーの意図を示します。
   * @type {boolean | undefined}
   */
  rememberDevice?: boolean;
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="error" type={<span><a href="/ja/docs/libraries/acul/js-sdk/Screens/interfaces/WebAuthnErrorDetails">WebAuthnErrorDetails</a></span>}>
  WebAuthn API (`navigator.credentials.get()`) から返されるエラーオブジェクトで、
  DOMException の `name` と `message` が含まれます。
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  任意。`true` で、かつ `screen.showRememberDevice` も `true` の場合、
  SDK はフォーム送信に `rememberBrowser=true` を含めます。
</ParamField>
