Skip to content

Commit

Permalink
Merge pull request #1077 from CruGlobal/MPDX-8158-fix-mailing-address…
Browse files Browse the repository at this point in the history
…-0-printed-to-screen

Fix 0 printed to screen.
  • Loading branch information
wjames111 authored Sep 17, 2024
2 parents 233f13f + bf9e0d5 commit bc5798e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ const FixMailingAddresses: React.FC<Props> = ({
{!loading && data && (
<React.Fragment>
{!totalContacts && <NoData tool="fixMailingAddresses" />}
{totalContacts && (
{!!totalContacts && (
<>
<Grid item xs={12}>
<Box className={classes.descriptionBox}>
Expand Down

0 comments on commit bc5798e

Please sign in to comment.