mirror of
https://github.com/go-gitea/gitea.git
synced 2026-09-19 11:13:41 +09:00
chore(deps): adapt to updated dependencies
unicorn 73 renamed `prevent-abbreviations` to `name-replacements` and added five rules, `iteration-fallback-style` among them. vue-scoped-css 3.1.3 now exports ESLint-compatible rule config types, making the cast obsolete. The exhaustive rule lists are re-synced with eslint-config-silverwind. Assisted-by: Claude Code:claude-opus-5
This commit is contained in:
@@ -251,10 +251,8 @@ async function webAuthnRegisterRequest() {
|
||||
|
||||
options.publicKey.challenge = decodeURLEncodedBase64(options.publicKey.challenge);
|
||||
options.publicKey.user.id = decodeURLEncodedBase64(options.publicKey.user.id);
|
||||
if (options.publicKey.excludeCredentials) {
|
||||
for (const cred of options.publicKey.excludeCredentials) {
|
||||
cred.id = decodeURLEncodedBase64(cred.id);
|
||||
}
|
||||
for (const cred of options.publicKey.excludeCredentials || []) {
|
||||
cred.id = decodeURLEncodedBase64(cred.id);
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user