We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071c102 commit 1538c46Copy full SHA for 1538c46
src/components/field-label/field-label.component.tsx
@@ -17,7 +17,7 @@ interface FieldLabelProps {
17
const Tooltip: React.FC<{ field: FormField; children: React.ReactNode }> = ({ field, children }) => {
18
const { t } = useTranslation();
19
return (
20
- <CarbonTooltip align="top-left" label={t(field.questionInfo)} defaultOpen>
+ <CarbonTooltip align="top-left" label={t(field.questionInfo)}>
21
{children}
22
</CarbonTooltip>
23
);
0 commit comments