chore: Update translations

This commit is contained in:
2023-09-18 11:38:33 +00:00
parent bbbcbc0a92
commit a1cd56292a
10 changed files with 78 additions and 50 deletions

View File

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