Remove debug statements

pull/578/head
Zef Hemel 2023-11-25 14:31:39 +01:00
parent 8d326a668b
commit bf5d17aa7a
1 changed files with 1 additions and 3 deletions

View File

@ -26,11 +26,9 @@ class IFrameWidget extends WidgetType {
} }
get estimatedHeight(): number { get estimatedHeight(): number {
const height = this.editor.space.getCachedWidgetHeight( return this.editor.space.getCachedWidgetHeight(
this.widgetHeightCacheKey, this.widgetHeightCacheKey,
); );
console.log("GOt height", height);
return height;
} }
eq(other: WidgetType): boolean { eq(other: WidgetType): boolean {