chore: Update translations

This commit is contained in:
2023-08-28 16:40:15 +00:00
parent 0a60b22fb2
commit 8a3133af70
6 changed files with 541 additions and 90 deletions

View File

@ -305,9 +305,11 @@ export default function Note(props: NoteProps) {
if (!canRenderAsTextNote.includes(ev.kind)) {
const alt = findTag(ev, "alt");
if (alt) {
return <div className="note-quote">
<Text content={alt} tags={[]} creator={ev.pubkey} />
</div>
return (
<div className="note-quote">
<Text content={alt} tags={[]} creator={ev.pubkey} />
</div>
);
} else {
return (
<>
@ -377,7 +379,7 @@ export default function Note(props: NoteProps) {
{options.showContextMenu && (
<NoteContextMenu
ev={ev}
react={async () => { }}
react={async () => {}}
onTranslated={t => setTranslated(t)}
setShowReactions={setShowReactions}
/>