function my_custom_enqueue_scripts() {
// Get the current screen
$current_screen = get_current_screen();
// Only enqueue the wp-editor script on post or page editor, not on the widgets or customizer screen
if ( $current_screen && $current_screen->is_block_editor() && !is_customize_preview() && !wp_should_load_block_editor_scripts() ) {
wp_enqueue_script('wp-editor');
}
}
add_action('admin_enqueue_scripts', 'my_custom_enqueue_scripts');