diff --git a/packages/system-react/src/useReactions.ts b/packages/system-react/src/useReactions.ts index 85683cc3..2e85d7bc 100644 --- a/packages/system-react/src/useReactions.ts +++ b/packages/system-react/src/useReactions.ts @@ -23,7 +23,9 @@ export function useReactions( ); for (const [, v] of Object.entries(grouped)) { - rb.withFilter().kinds([EventKind.TextNote, EventKind.Reaction, EventKind.Repost, EventKind.ZapReceipt]).replyToLink(v); + rb.withFilter() + .kinds([EventKind.TextNote, EventKind.Reaction, EventKind.Repost, EventKind.ZapReceipt]) + .replyToLink(v); } } others?.(rb);