From bf5d17aa7a665a3f030dfdb1bbab15a150a539e3 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sat, 25 Nov 2023 14:31:39 +0100 Subject: [PATCH] Remove debug statements --- web/cm_plugins/preface_ps.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/cm_plugins/preface_ps.ts b/web/cm_plugins/preface_ps.ts index 0d4b07ba..81371060 100644 --- a/web/cm_plugins/preface_ps.ts +++ b/web/cm_plugins/preface_ps.ts @@ -26,11 +26,9 @@ class IFrameWidget extends WidgetType { } get estimatedHeight(): number { - const height = this.editor.space.getCachedWidgetHeight( + return this.editor.space.getCachedWidgetHeight( this.widgetHeightCacheKey, ); - console.log("GOt height", height); - return height; } eq(other: WidgetType): boolean {