[collective.easyform] getting rid of the default/Standard fieldset

As part of a PFG -> EF migration, all our form fields sit in their own fieldsets (no field elements on the schema node level:

<model>
  <schema>
    <fieldset>...</fieldset>
    <fieldset>...</fieldset>
    <fieldset>...</fieldset>
...

EasyForm insists on providing the default „Standard“ fieldset in the EF UI. When the EF form is being rendered (creating an empty „row“), is there a way to eliminate the default/Standard fieldset altogether? I only want to display my three fieldsets from the provided example.

I had something similar, but not for EasyForm.
Maybe you could use the same approch, I think it is possible to 'just hide the label', something like:

class MyTypeAddForm(DefaultAddForm):
    portal_type = "my_type"
    default_fieldset_label = ''

PS: You probably need to do the same for the EditForm

Irrelevant

For my content type, the empty / default fieldset and 'Tab' is not rendered, in view/edit/add I thought that was what you wanted. Dont think there should be any diffrerent approach for EasyForm vs other content thypes. I think that was how I did it, must be something else if that did not work, but I will not bother to find the code now.