fix: update 'Not found the note' to 'Note not found'
This commit is contained in:
@@ -27,7 +27,7 @@ export default function ContentPreview({
|
||||
const { t } = useTranslation()
|
||||
const translatedEvent = useTranslatedEvent(event?.id)
|
||||
const nodes = useMemo(() => {
|
||||
if (!event) return [{ type: 'text', data: `[${t('Not found the note')}]` }]
|
||||
if (!event) return [{ type: 'text', data: `[${t('Note not found')}]` }]
|
||||
|
||||
if (event.kind === kinds.Highlights) return []
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function ParentNotePreview({
|
||||
)}
|
||||
>
|
||||
<div className="shrink-0">{t('reply to')}</div>
|
||||
<div>{`[${t('Not found the note')}]`}</div>
|
||||
<div>{`[${t('Note not found')}]`}</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user