Skip to content

Commit 8cfc771

Browse files
committed
Remove console.log statements.
1 parent d73f75a commit 8cfc771

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

projects/plugins/jetpack/extensions/shared/wait-for-editor.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export const waitForEditor = async () =>
1212
select( 'core/editor' ).isCleanNewPost() ||
1313
select( 'core/block-editor' ).getBlocks().length > 0
1414
) {
15-
console.log( 'Resolved immediately' );
1615
resolve();
1716
return;
1817
}
@@ -24,7 +23,6 @@ export const waitForEditor = async () =>
2423
}, 2000 );
2524

2625
const unsubscribe = subscribe( () => {
27-
console.log( 'Checking blocks' );
2826
const blocks = select( 'core/block-editor' ).getBlocks();
2927
if ( blocks.length > 0 ) {
3028
clearTimeout( timeoutId );

0 commit comments

Comments
 (0)