diff --git a/packages/app/src/Components/Event/Note/NoteFooter/NoteFooter.tsx b/packages/app/src/Components/Event/Note/NoteFooter/NoteFooter.tsx index e15c0ce8..7df40654 100644 --- a/packages/app/src/Components/Event/Note/NoteFooter/NoteFooter.tsx +++ b/packages/app/src/Components/Event/Note/NoteFooter/NoteFooter.tsx @@ -22,7 +22,7 @@ export default function NoteFooter(props: NoteFooterProps) { const [showReactions, setShowReactions] = useState(false); const related = useReactions("reactions", ids, undefined, false); - const { reactions, zaps, reposts } = useEventReactions(link, related); + const { replies, reactions, zaps, reposts } = useEventReactions(link, related); const { positive } = reactions; const { preferences: prefs, readonly } = useLogin(s => ({ @@ -33,7 +33,7 @@ export default function NoteFooter(props: NoteFooterProps) { return (
- + {prefs.enableReactions && } {CONFIG.showPowIcon && } diff --git a/packages/system-react/src/useEventReactions.tsx b/packages/system-react/src/useEventReactions.tsx index a47d864c..bbf2d599 100644 --- a/packages/system-react/src/useEventReactions.tsx +++ b/packages/system-react/src/useEventReactions.tsx @@ -47,6 +47,7 @@ export function useEventReactions(link: NostrLink, related: ReadonlyArray