fix: PR review

This commit is contained in:
Tolulope Adetula 2022-05-31 15:21:46 +01:00
parent af17e7b8fd
commit b22975f6db

View File

@ -542,5 +542,5 @@ export const parseSchemaItem = (
};
export const getClosestCanvas = (node: HTMLElement | null) => {
return node?.closest(`${CANVAS_SELECTOR}`) as HTMLElement;
return node?.closest(CANVAS_SELECTOR) as HTMLElement;
};