Skip to content

Commit

Permalink
fix: address lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 committed Nov 25, 2024
1 parent eaaa460 commit b47791b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const AddressInfoItem: React.FC<AddressInfoProps> = props => {
</TouchableOpacity>
<TouchableOpacity style={styles.addressButton} onPress={onCopy}>
<Text style={styles.addressText}>
{account.address}
{account.address.toLowerCase()}
<View style={styles.textIconWrapper}>
<RcIconCopyCC
style={styles.textCopyIcon}
Expand Down

0 comments on commit b47791b

Please sign in to comment.