Skip to content

Commit 1538c46

Browse files
authored
Remove the defaultOpen prop for the tooltip
1 parent 071c102 commit 1538c46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/field-label/field-label.component.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface FieldLabelProps {
1717
const Tooltip: React.FC<{ field: FormField; children: React.ReactNode }> = ({ field, children }) => {
1818
const { t } = useTranslation();
1919
return (
20-
<CarbonTooltip align="top-left" label={t(field.questionInfo)} defaultOpen>
20+
<CarbonTooltip align="top-left" label={t(field.questionInfo)}>
2121
{children}
2222
</CarbonTooltip>
2323
);

0 commit comments

Comments
 (0)