This commit is contained in:
2023-09-19 10:01:13 +01:00
parent 04239123bb
commit 4b2161369d
12 changed files with 42 additions and 65 deletions

View File

@ -142,9 +142,16 @@ export const NotesTab = () => {
<>
<FollowsHint />
<TaskList />
<TimelineFollows postsOnly={true} noteOnClick={deckContext ? (ev) => {
deckContext.setThread(NostrLink.fromEvent(ev));
} : undefined} />
<TimelineFollows
postsOnly={true}
noteOnClick={
deckContext
? ev => {
deckContext.setThread(NostrLink.fromEvent(ev));
}
: undefined
}
/>
</>
);
};