RadzenAccordionItem Visibility

I am attempting to show use the Visibility property of the Accordion Item to only show if it data exists for a certain object. It seems setting Visibility to false on an accordion item will cause an exception. Setting to true is fine.
Exception:
Unhandled exception rendering component: Unable to set property 'Visible' on object of type 'Radzen.Blazor.RadzenAccordionItem'. The error was: Object reference not set to an instance of an object.

Test Accordion

  <RadzenAccordion>
      <Items>
          <RadzenAccordionItem Visible="true" Text="Item 1">
              Visible
          </RadzenAccordionItem>
          <RadzenAccordionItem Visible="false" Text="Item 2">
              Not Visible
          </RadzenAccordionItem>
      </Items>
  </RadzenAccordion>

I have resorted to setting the message within the accordion as the Visibility appears to be unusable.

Thanks! It will be fixed in our next update.