How to hide this button Links

@neha , Please add the custom script on the doctype Address.

frappe.ui.form.on('Address', {
    refresh(frm) {
    setTimeout(() => {
        $('.inner-group-button').prop('hidden', true);
        }, 300);
    }
})

Thanks