about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorsurfdude29 <149612116+surfdude29@users.noreply.github.com>2025-02-24 20:49:26 +0000
committerGitHub <noreply@github.com>2025-02-24 12:49:26 -0800
commita7e1913e222bdd658cd7f81c79fd39c0dc3a3c02 (patch)
tree2877daf11588d5658aa3ce290f26c0dc5a95f39d /src
parenta1699da1a9853c5baf2036c4c0beffdfad507a4c (diff)
downloadvoidsky-a7e1913e222bdd658cd7f81c79fd39c0dc3a3c02.tar.zst
move translation tags (#7823)
Diffstat (limited to 'src')
-rw-r--r--src/screens/Signup/StepHandle.tsx10
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>
         )}