Skip to content

Commit

Permalink
Updated boolean check
Browse files Browse the repository at this point in the history
  • Loading branch information
huzaifa-99 committed Oct 16, 2023
1 parent bbfde5d commit f5b1e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AddressSearch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ function AddressSearch(props) {
isDisabled={props.network.isOffline}
/>
)}
{!Boolean(props.value) && <Text style={[styles.textLabel, styles.colorMuted, styles.pv2, styles.ph3, styles.overflowAuto]}>{props.translate('common.recentDestinations')}</Text>}
{!props.value && <Text style={[styles.textLabel, styles.colorMuted, styles.pv2, styles.ph3, styles.overflowAuto]}>{props.translate('common.recentDestinations')}</Text>}
</>
);

Expand Down

0 comments on commit f5b1e62

Please sign in to comment.