Threading improvments

This commit is contained in:
2022-12-28 22:09:39 +00:00
parent b26f3a9b95
commit 99410dd8c2
8 changed files with 89 additions and 59 deletions

View File

@ -7,5 +7,5 @@ export default function EventPage() {
const id = params.id;
const { notes } = useThreadFeed(id);
return <Thread notes={notes}/>;
return <Thread notes={notes} this={id}/>;
}