Remove console.log

pull/528/head
Zef Hemel 2023-10-03 14:34:21 +02:00
parent 3535bc9449
commit 0b4f938c5d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class IFrameWidget extends WidgetType {
get estimatedHeight(): number {
const cachedHeight = this.editor.space.getCachedWidgetHeight(this.bodyText);
console.log("Calling estimated height", cachedHeight);
// console.log("Calling estimated height", cachedHeight);
return cachedHeight > 0 ? cachedHeight : 150;
}