Skip to content

Commit

Permalink
change the condition
Browse files Browse the repository at this point in the history
  • Loading branch information
nkdengineer committed Oct 9, 2024
1 parent eda9f8e commit 17f47cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportWelcomeText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function ReportWelcomeText({report, policy}: ReportWelcomeTextProps) {
<Text>{welcomeMessage.phrase1}</Text>
</Text>
)}
{isDefault && displayNamesWithTooltips.length && (
{isDefault && displayNamesWithTooltips.length > 0 && (
<Text>
<Text>{welcomeMessage.phrase1}</Text>
{displayNamesWithTooltips.map(({displayName, accountID}, index) => (
Expand Down

0 comments on commit 17f47cb

Please sign in to comment.