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;