Merge remote-tracking branch 'origin/develop' into chat-refactor

This commit is contained in:
Henry Jameson 2026-07-21 18:39:47 +03:00
commit 65291bc303
57 changed files with 3468 additions and 396 deletions

View file

@ -48,6 +48,7 @@ import {
muteUser as apiMuteUser,
unblockUser as apiUnblockUser,
unmuteUser as apiUnmuteUser,
editUserNote as apiEditUserNote,
fetchBlocks,
fetchDomainMutes,
fetchMutes,
@ -124,7 +125,7 @@ const removeUserFromFollowers = (store, id) => {
}
const editUserNote = (store, { id, comment }) => {
return editUserNote({ id, comment }).then((relationship) =>
return apiEditUserNote({ id, comment }).then((relationship) =>
store.commit('updateUserRelationship', [relationship]),
)
}