RadzenRadialGauge - End Tag will not detected

Hello,
I have just installed Radzen Blazor for Visual Studio.
When I am adding a RadzenRadialGauge to a page, the
html end tag for this component will not be detected:

@page "/"
<PageTitle>Index</PageTitle>
<RadzenRow Gap="5" RowGap="5">
    <RadzenColumn Size="12">
        <RadzenRadialGauge>
            <RadzenRadialGaugeScale>
                    <RadzenRadialGaugeScalePointer Value="40" />
                </RadzenRadialGaugeScale>
            </RadzenRadialGauge>
        </RadzenRadialGauge>

        <RadzenArcGauge>
            <RadzenArcGaugeScale>
                <RadzenArcGaugeScaleValue Value="40" />
            </RadzenArcGaugeScale>
        </RadzenArcGauge>
    </RadzenColumn>
</RadzenRow>

You have two closing tags while you should have only one.

There is indeed an issue with the toolbox item and it inserts the closing tag twice. We will fix that with the next release.