From 7fe6535ad8da0fd85c8ffafd112e4f01695b1a27 Mon Sep 17 00:00:00 2001 From: huangfengli02 Date: Thu, 11 Dec 2025 15:27:21 +0800 Subject: [PATCH] bugfix: remove unexpected console.log --- src/util/parse-height-from-html.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/parse-height-from-html.ts b/src/util/parse-height-from-html.ts index 2d55cdb0..0cb96c4d 100644 --- a/src/util/parse-height-from-html.ts +++ b/src/util/parse-height-from-html.ts @@ -3,7 +3,6 @@ export const parseHeightFromHTML = (html: string): number => { const parser = new DOMParser(); const doc = parser.parseFromString(html, 'text/html'); const el = doc.body.firstElementChild; - console.log(el?.getClientRects(), 11); if (!el) return 0;