How can I deactivate the Woocommerce zoom image?

add_action( 'after_setup_theme', 'custom_remove_product_zoom', 90 );
function custom_remove_product_zoom() {
  remove_theme_support( 'wc-product-gallery-zoom' );
}