fix(UserStore): add missing return keyword in array filter

This commit is contained in:
P. Reis 2024-04-27 17:04:14 -03:00
parent a7912e0800
commit ab7a60c6de
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export class UserStore implements NStore {
const mutedPubkeys = getTagSet(mutedPubkeysEvent.tags, 'p');
return allEvents.filter((event) => {
mutedPubkeys.has(event.pubkey) === false;
return mutedPubkeys.has(event.pubkey) === false;
});
}