refactor(react): get rid of jQuery in static tooltip

This commit is contained in:
Elian Doran 2025-09-17 08:26:05 +03:00
parent 641c6f4595
commit f87d270caa
No known key found for this signature in database

View File

@ -535,11 +535,8 @@ export function useStaticTooltip(elRef: RefObject<Element>, config?: Partial<Too
const hasTooltip = config?.title || elRef.current?.getAttribute("title");
if (!elRef?.current || !hasTooltip) return;
const $el = $(elRef.current);
$el.tooltip(config);
return () => {
$el.tooltip("dispose");
}
const tooltip = Tooltip.getOrCreateInstance(elRef.current, config);
return () => tooltip.dispose();
}, [ elRef, config ]);
}