Skip to content

Commit

Permalink
removed empty tooltips from forms
Browse files Browse the repository at this point in the history
  • Loading branch information
akanshaaa19 committed Aug 19, 2024
1 parent 318a33b commit 5ec2ed0
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 5ec2ed0

Please sign in to comment.