Skip to content

Commit

Permalink
docs: text
Browse files Browse the repository at this point in the history
  • Loading branch information
hz002 committed Dec 2, 2024
1 parent 8b2dfb7 commit e5a5a14
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions apps/mobile/src/screens/Address/AddressListScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,23 @@ export function AddressListScreen(): JSX.Element {
ListEmptyComponent={AddressEmptyContainer}
ListHeaderComponent={
<View style={styles.headline}>
<Text style={styles.headlineText}>My Address ({list?.length})</Text>
<Text style={styles.headlineText}>
My addresses ({list?.length})
</Text>
</View>
}
ListFooterComponent={
<View style={styles.footer}>
{hasSafeAddress && (
<OtherAddressNav
onPress={onGotoSafeAddress}
text={'Imported Safe Address'}
text={'Imported Safe addresses'}
/>
)}
{hasWatchAddress && (
<OtherAddressNav
onPress={onGotoWatchAddress}
text={'Imported Watch-only address'}
text={'Imported watch-only addresses'}
/>
)}
<View style={styles.footerGap} />
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/src/screens/Address/ImportMethods.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function ImportMethods(): JSX.Element {
enableContentPanningGesture: true,
enablePanDownToClose: true,
},
title: 'Is it safe to import it in Rabby?',
title: 'Is it safe to import into Rabby?',
sections: [
{
description:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const ImportPrivateKeyScreen2024 = () => {
},
)}
inputProps={{
placeholder: 'Enter your Private Key',
placeholder: 'Enter your private Key',
value: privateKey,
onChangeText: setPrivateKey,
}}
Expand Down Expand Up @@ -222,7 +222,7 @@ export const ImportPrivateKeyScreen2024 = () => {
},
});
}}>
<Text style={styles.tip}>What is 'Private Key'</Text>
<Text style={styles.tip}>What's a private key</Text>
<HelpIcon style={styles.tipIcon} />
</Pressable>
</View>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export const ImportSeedPhraseScreen2024 = () => {
onPress={() => {
const modalId = createGlobalBottomSheetModal2024({
name: MODAL_NAMES.DESCRIPTION,
title: "What is a 'Seed phrase'",
title: "What's a Seed Phrase",
sections: [
{
description:
Expand Down

0 comments on commit e5a5a14

Please sign in to comment.