From 4114349b0dccd12894da9715d7073c504e3ff09e Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 28 Aug 2026 23:21:05 +0300 Subject: [PATCH] fix --- src/stores/statuses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/statuses.js b/src/stores/statuses.js index 9c468ca55..5fd7a3f2c 100644 --- a/src/stores/statuses.js +++ b/src/stores/statuses.js @@ -411,7 +411,7 @@ export const useStatusesStore = defineStore('statuses', { const accounts = value ? [...reaction.accounts, currentUser] : reaction.accounts.filter((acc) => acc.id !== currentUser.id) - const account_ids = accounts.map(({ id }) => id) + const account_ids = accounts.filter(Boolean).map(({ id }) => id) const newReaction = { ...reaction,