This issue was caused by new version of jQuery added in function.php file.
// Modern jQuery Library
function modify_jquery() {
if (!is_admin()) {
// Serve localy
wp_deregister_script('jquery');
wp_register_script('jquery', '/wp-content/themes/woodmart-child/vendor/jquery-3.5.1.min.js', false, '3.5.1');
wp_enqueue_script('jquery');
wp_deregister_script('jquery-migrate');
wp_register_script('jquery-migrate', '/wp-content/themes/woodmart-child/vendor/jquery-migrate-3.3.0.min.js', false, '3.3.0');
wp_enqueue_script('jquery-migrate');
}
}
add_action('init', 'modify_jquery');
Thanks!!!