diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2025-02-24 20:49:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-24 12:49:26 -0800 |
commit | a7e1913e222bdd658cd7f81c79fd39c0dc3a3c02 (patch) | |
tree | 2877daf11588d5658aa3ce290f26c0dc5a95f39d | |
parent | a1699da1a9853c5baf2036c4c0beffdfad507a4c (diff) | |
download | voidsky-a7e1913e222bdd658cd7f81c79fd39c0dc3a3c02.tar.zst |
move translation tags (#7823)
-rw-r--r-- | src/screens/Signup/StepHandle.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx index a583fb9c8..9192ba5a2 100644 --- a/src/screens/Signup/StepHandle.tsx +++ b/src/screens/Signup/StepHandle.tsx @@ -126,10 +126,12 @@ export function StepHandle() { </View> {draftValue !== '' && ( <Text style={[a.text_md]}> - <Trans>Your full username will be</Trans>{' '} - <Text style={[a.text_md, a.font_bold]}> - @{createFullHandle(draftValue, state.userDomain)} - </Text> + <Trans> + Your full username will be{' '} + <Text style={[a.text_md, a.font_bold]}> + @{createFullHandle(draftValue, state.userDomain)} + </Text> + </Trans> </Text> )} |