chore: Update translations

This commit is contained in:
2023-09-05 13:59:44 +00:00
parent b1459d0f49
commit df7353a43c
37 changed files with 7031 additions and 800 deletions

View File

@ -229,14 +229,18 @@ function NotificationContext({ link }: { link: NostrLink }) {
const { data: ev } = useEventFeed(link);
const navigate = useNavigate();
return ev && <Text
id={ev.id}
content={ev.content}
tags={ev.tags}
creator={ev.pubkey}
truncate={120}
disableLinkPreview={true}
className="content"
onClick={() => navigate(`/${link.encode()}`)}
/>
return (
ev && (
<Text
id={ev.id}
content={ev.content}
tags={ev.tags}
creator={ev.pubkey}
truncate={120}
disableLinkPreview={true}
className="content"
onClick={() => navigate(`/${link.encode()}`)}
/>
)
);
}