Edited types
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Shahan Nedadahandeh 2022-12-28 01:29:13 -05:00
parent d95ad182d1
commit 0662159145
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ type TooltipWrapperProps = {
// Finds the SVG Element which is the outmost from element (highest parent of element which is svg)
function getOutmostSVG(element: Element): SVGElement | undefined {
let rootSVG: HTMLElement | Element | null = element ?? null;
let rootSVG: HTMLElement | Element | null = element;
let current: HTMLElement | Element | null = element;
while (current) {