chore: Update translations

This commit is contained in:
2023-11-14 15:14:33 +00:00
parent 2f4d6d20fd
commit 27cf614048
29 changed files with 29 additions and 40 deletions

View File

@ -22,6 +22,11 @@ export function useLiveChatFeed(link: NostrLink, eZaps?: Array<string>) {
return (feed.data ?? []).filter(ev => ev.kind === LIVE_STREAM_CHAT);
}, [feed.data]);
const reactions = useReactions(`live:${link.id}:${link.author}:reactions`, messages.map(a => NostrLink.fromEvent(a)).concat(link), undefined, true);
const reactions = useReactions(
`live:${link.id}:${link.author}:reactions`,
messages.map(a => NostrLink.fromEvent(a)).concat(link),
undefined,
true
);
return { messages, reactions: reactions.data ?? [] };
}