Skip to content

Commit

Permalink
Merge pull request #37462 from barros001/fix/36079
Browse files Browse the repository at this point in the history
in recent destinations, bold description if title is not available
  • Loading branch information
puneetlath authored Mar 1, 2024
2 parents b0d72db + 9f0ae8a commit 79954c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AddressSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ function AddressSearch(
return (
<View>
{!!title && <Text style={[styles.googleSearchText]}>{title}</Text>}
<Text style={[styles.textLabelSupporting]}>{subtitle}</Text>
<Text style={[title ? styles.textLabelSupporting : styles.googleSearchText]}>{subtitle}</Text>
</View>
);
}}
Expand Down

0 comments on commit 79954c2

Please sign in to comment.