Compare commits

...

1 Commits

Author SHA1 Message Date
Vinícius Lourenço
8fe20a8768 fix(create-alert-v2): tooltip not showing due to pointer-events none 2026-05-28 11:58:25 -03:00

View File

@@ -196,7 +196,11 @@ function Footer(): JSX.Element {
</Button>
);
if (alertValidationMessage) {
button = <Tooltip title={alertValidationMessage}>{button}</Tooltip>;
button = (
<Tooltip title={alertValidationMessage}>
<span>{button}</span>
</Tooltip>
);
}
return button;
}, [