Skip to content

Commit

Permalink
fix(wallet-setup): duplicated wallet warning
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Apr 16, 2024
1 parent 3e57bf2 commit ea96c25
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -130,7 +130,6 @@ export const WalletDetailsScreen = () => {
}, [createWallet, mnemonic, name, networkId, password, track, walletImplementationId])

const showModalTipsPassword = () => {
Keyboard.dismiss()
openModal(
strings.walletDetailsModalTitle,
<View style={styles.modal}>
Expand Down Expand Up @@ -213,7 +212,7 @@ export const WalletDetailsScreen = () => {
<View style={styles.info}>
<Text style={styles.title}>{strings.walletDetailsTitle(bold)}</Text>

<TouchableOpacity style={{flex: 1, alignSelf: 'center'}} onPress={showModalTipsPassword}>
<TouchableOpacity onPress={showModalTipsPassword}>
<InfoIllustration />
</TouchableOpacity>
</View>
Expand Down

0 comments on commit ea96c25

Please sign in to comment.