feat: add support for commenting and reacting on external content

This commit is contained in:
codytseng
2025-11-15 16:26:19 +08:00
parent 5ba5c26fcd
commit 0bb62dd3fb
76 changed files with 1635 additions and 639 deletions

View File

@@ -21,13 +21,13 @@ export default function NoteInteractions({
let list
switch (type) {
case 'replies':
list = <ReplyNoteList index={pageIndex} event={event} />
list = <ReplyNoteList index={pageIndex} stuff={event} />
break
case 'quotes':
list = <QuoteList event={event} />
break
case 'reactions':
list = <ReactionList event={event} />
list = <ReactionList stuff={event} />
break
case 'reposts':
list = <RepostList event={event} />