Remove Main Description Editor from Woocommerce

// Remove Main Description Editor from Woocommerce

function remove_product_editor() {
  remove_post_type_support( 'product', 'editor' );
}
add_action( 'init', 'remove_product_editor' );