Adding this to your child theme’s functions.php file should work, it’s worked for me
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart',30);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart',20);
– Kyle