Skip to content

Commit

Permalink
Merge pull request #3031 from glific/empty-tooltips
Browse files Browse the repository at this point in the history
Removed empty tooltips from forms
  • Loading branch information
kurund committed Aug 20, 2024
2 parents 318a33b + 5ec2ed0 commit ec2bfed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/UI/Heading/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const Heading = ({ formTitle, helpData, showHeaderHelp = true, backLink }
<div>
<div className={styles.HeadingTitle}>
<div className={styles.TitleText}>{formTitle}</div>
{!helpData ? <HelpIcon helpData={helpData} /> : ''}
{helpData ? <HelpIcon helpData={helpData} /> : ''}
</div>
<div className={styles.TextHeading}>
{showHeaderHelp ? `Please enter below details.` : ''}
Expand Down

0 comments on commit ec2bfed

Please sign in to comment.