diff options
Diffstat (limited to 'src/components/moderation/LabelsOnMeDialog.tsx')
-rw-r--r-- | src/components/moderation/LabelsOnMeDialog.tsx | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx index bf0d1905e..34fff5a8a 100644 --- a/src/components/moderation/LabelsOnMeDialog.tsx +++ b/src/components/moderation/LabelsOnMeDialog.tsx @@ -242,18 +242,20 @@ function AppealForm({ <Trans>Appeal "{strings.name}" label</Trans> </Text> <Text style={[a.text_md, a.leading_snug]}> - <Trans>This appeal will be sent to</Trans>{' '} + <Trans> + This appeal will be sent to{' '} + <InlineLinkText + label={sourceName} + to={makeProfileLink( + labeler ? labeler.creator : {did: label.src, handle: ''}, + )} + onPress={() => control.close()} + style={[a.text_md, a.leading_snug]}> + {sourceName} + </InlineLinkText> + . + </Trans> </Text> - <InlineLinkText - label={sourceName} - to={makeProfileLink( - labeler ? labeler.creator : {did: label.src, handle: ''}, - )} - onPress={() => control.close()} - style={[a.text_md, a.leading_snug]}> - {sourceName} - </InlineLinkText> - <Text style={[a.text_md, a.leading_snug]}>.</Text> </View> <View style={[a.my_md]}> <Dialog.Input |