diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-10-06 08:22:00 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-05 16:22:00 -0700 |
commit | 25e3c93e1e9f5ab84d56ccbab7d63be219a590ac (patch) | |
tree | b1f7be60ec5564e42ed3aa409985e33d823b9413 /src/screens/Signup/index.tsx | |
parent | 1118fd68838658981ce692efea87030696f3323a (diff) | |
download | voidsky-25e3c93e1e9f5ab84d56ccbab7d63be219a590ac.tar.zst |
Improve localization of {els} string on Create Account page (#3912)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/screens/Signup/index.tsx')
-rw-r--r-- | src/screens/Signup/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index e3da053c0..1857981a0 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -168,7 +168,8 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { <View style={[a.w_full, a.py_lg, a.flex_row, a.gap_lg, a.align_center]}> <AppLanguageDropdown /> - <Text style={[t.atoms.text, !gtMobile && a.text_md]}> + <Text + style={[t.atoms.text_contrast_medium, !gtMobile && a.text_md]}> <Trans>Having trouble?</Trans>{' '} <InlineLinkText label={_(msg`Contact support`)} |