diff options
author | Chenyu Huang <itschenyu@gmail.com> | 2025-08-20 15:00:06 -0700 |
---|---|---|
committer | Chenyu Huang <itschenyu@gmail.com> | 2025-08-20 15:00:06 -0700 |
commit | 0474a3b6f7706d9881f8f7544be343459ecc4035 (patch) | |
tree | 4290348418e9feedb662afdd6cfccd84397c7542 /src/screens | |
parent | f7c05c2df44bec9feebbcb8f888cdcb49d6095d3 (diff) | |
download | voidsky-0474a3b6f7706d9881f8f7544be343459ecc4035.tar.zst |
address feedback
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/StarterPack/Wizard/index.tsx | 60 |
1 files changed, 37 insertions, 23 deletions
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index e823f8bb7..651f8f77f 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -483,30 +483,44 @@ function Footer({ <Text style={[a.text_center, textStyles]}> { items.length < 2 ? ( - <Trans> - It's just{' '} - <Text style={[a.font_bold, textStyles]} emoji> - {currentAccount?.did === items[0].did - ? 'you' - : getName(items[0])}{' '} - </Text> - right now! Add more people to your starter pack by searching - above. - </Trans> + currentAccount?.did === items[0].did ? ( + <Trans> + It's just you right now! Add more people to your starter + pack by searching above. + </Trans> + ) : ( + <Trans> + It's just{' '} + <Text style={[a.font_bold, textStyles]} emoji> + {getName(items[0])}{' '} + </Text> + right now! Add more people to your starter pack by searching + above. + </Trans> + ) ) : items.length === 2 ? ( - <Trans> - <Text style={[a.font_bold, textStyles]}> - {currentAccount?.did === items[0].did - ? 'you' - : getName(items[0])} - </Text>{' '} - and - <Text> </Text> - <Text style={[a.font_bold, textStyles]} emoji> - {getName(items[1] /* [0] is self, skip it */)}{' '} - </Text> - are included in your starter pack - </Trans> + currentAccount?.did === items[0].did ? ( + <Trans> + <Text style={[a.font_bold, textStyles]}>You</Text> and + <Text> </Text> + <Text style={[a.font_bold, textStyles]} emoji> + {getName(items[1] /* [0] is self, skip it */)}{' '} + </Text> + are included in your starter pack + </Trans> + ) : ( + <Trans> + <Text style={[a.font_bold, textStyles]}> + {getName(items[0])} + </Text>{' '} + and + <Text> </Text> + <Text style={[a.font_bold, textStyles]} emoji> + {getName(items[1] /* [0] is self, skip it */)}{' '} + </Text> + are included in your starter pack + </Trans> + ) ) : items.length > 2 ? ( <Trans context="profiles"> <Text style={[a.font_bold, textStyles]} emoji> |