Skip to main content
ScreenMembersOnMfaWebAuthnChangeKeyNickname
Example
export interface ScreenMembersOnMfaWebAuthnChangeKeyNickname extends ScreenMembers {
  /**
   * Screen-specific data containing the current nickname of the WebAuthn key.
   * @type {{ nickname: string; } | null}
   */
  data: {
    /**
     * The current nickname of the WebAuthn security key that the user is about to change.
     * This value should be displayed to the user for context.
     * @type {string}
     * @example "My YubiKey"
     * @example "Work Security Key"
     */
    nickname: string;
  } | null;
}

Properties

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data
{ nickname: string; }
Screen-specific data.
  • Type Declaration: { nickname: string; }
isCaptchaAvailable
boolean
name
string
texts
Record