We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef14ad commit 10c78dfCopy full SHA for 10c78df
1 file changed
src/util/parse-height-from-html.ts
@@ -3,7 +3,6 @@ export const parseHeightFromHTML = (html: string): number => {
3
const parser = new DOMParser();
4
const doc = parser.parseFromString(html, 'text/html');
5
const el = doc.body.firstElementChild;
6
- console.log(el?.getClientRects(), 11);
7
8
if (!el) return 0;
9
0 commit comments