Thread tweaks

This commit is contained in:
2022-12-28 17:05:20 +00:00
parent 0725e84d7b
commit f6a4ce3cdc
7 changed files with 64 additions and 21 deletions

View File

@ -7,13 +7,5 @@ export default function EventPage() {
const id = params.id;
const { notes } = useThreadFeed(id);
if(notes?.length > 0) {
return (
<Thread notes={notes}/>
)
}
return (
<>Loading {id.substring(0, 8)}...</>
);
return <Thread notes={notes}/>;
}