chore(deps): update lint (#3337)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: TAKAHASHI Shuuji <shuuji3@gmail.com>
This commit is contained in:
renovate[bot] 2025-07-27 13:38:35 +09:00 committed by GitHub
parent b320b37e52
commit b8144db9ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 566 additions and 650 deletions

View file

@ -95,9 +95,9 @@ export async function toggleMuteAccount(relationship: mastodon.v1.Relationship,
relationship!.muting = !relationship!.muting
relationship = relationship!.muting
? await client.value.v1.accounts.$select(account.id).mute({
duration,
notifications,
})
duration,
notifications,
})
: await client.value.v1.accounts.$select(account.id).unmute()
}