Hide close for dialog

Here i had written dialog,
I want to hide the close button from the header of the dialog or It should execute the dialog first after that it should change the workflow action to reject state.

here the code :

frappe.ui.form.on('Sales Order', {
    before_workflow_action: function(frm) {
        var workflow_action = frm.selected_workflow_action;

        if (workflow_action === 'Reject') { 
            frappe.throw("hegvjh")
             
            let dialog = new frappe.ui.Dialog({
                title: __('Enter Rejection Reason'),
                fields: [
                    {
                        label: __('Rejection Reason'),
                        fieldname: 'rejection_reason',
                        fieldtype: 'Small Text',
                        reqd: 1
                    }
                ],
                primary_action_label: __('Submit'),
                primary_action(values) {
                    if (values.rejection_reason) {
                        frm.set_value('custom_reason_for_reject_', values.rejection_reason);
                        frm.save();
                        dialog.hide();
                    }
                }
            });

            dialog.show();
              frappe.validated = false; 
        }
    }
});

please help me to resolve this

check the syntax of hide button

Still it is showing the close button

Try this

dialog.get_close_btn().toggle(false);