fix(frontend): パスキー登録完了時の認証ダイアログの入力値が使われていない問題を修正 (#17539)

Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
This commit is contained in:
Kissa Ruokanen 2026-06-04 23:42:02 +09:00 committed by GitHub
commit 312d7c1866
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -222,8 +222,8 @@ async function addSecurityKey() {
if (auth2.canceled) return;
await os.apiWithDialog('i/2fa/key-done', {
password: auth.result.password,
token: auth.result.token,
password: auth2.result.password,
token: auth2.result.token,
name: name.result,
credential: credential,
});