Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
zefhemel committed Oct 3, 2023
1 parent 3535bc9 commit 0b4f938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/cm_plugins/fenced_code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 0b4f938

Please sign in to comment.