Skip to content

Commit

Permalink
fix(ui-ux): fixed address book label overlap issue for evm address
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstackninja864 committed Oct 19, 2023
1 parent f41fbe0 commit c82ef60
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ export function AddressBookScreen({ route, navigation }: Props): JSX.Element {
{item.label !== "" && (
<View style={tailwind("flex flex-row items-center")}>
<ThemedTextV2
style={tailwind("font-semibold-v2 text-sm min-w-0")}
style={tailwind(
"font-semibold-v2 text-sm min-w-0 w-10/12",
)}
testID={`address_row_label_${index}_${testIDSuffix}`}
>
{item.label}
Expand Down

0 comments on commit c82ef60

Please sign in to comment.