Update LabelsOnMeDialog.tsx

This commit is contained in:
Minseo Lee
2024-05-13 10:32:00 +09:00
parent 9f3c5cf431
commit 02db034d6e
@@ -162,10 +162,11 @@ function Label({
<View style={[a.px_md, a.py_sm, t.atoms.bg_contrast_25]}> <View style={[a.px_md, a.py_sm, t.atoms.bg_contrast_25]}>
<Text style={[t.atoms.text_contrast_medium]}> <Text style={[t.atoms.text_contrast_medium]}>
{isSelfLabel ? ( {isSelfLabel ? (
<Trans>This label was applied by you</Trans> <Trans>This label was applied by you.</Trans>
) : ( ) : (
<> <>
<Trans>Source:</Trans>{' '} <Trans>
Source:{' '}
<InlineLinkText <InlineLinkText
to={makeProfileLink( to={makeProfileLink(
labeler ? labeler.creator : {did: label.src, handle: ''}, labeler ? labeler.creator : {did: label.src, handle: ''},
@@ -175,6 +176,7 @@ function Label({
? sanitizeHandle(labeler.creator.handle, '@') ? sanitizeHandle(labeler.creator.handle, '@')
: label.src} : label.src}
</InlineLinkText> </InlineLinkText>
</Trans>
</> </>
)} )}
</Text> </Text>