Radzen Datagrid Inline issue

Hi Team

I have found some issue in the radzen inline editing.

<RadzenButton Click="InsertRow" Disabled="@(editMode == DataGridEditMode.Single && ReleaseNoteEntryDTOToInsert.Count() > 0)" Style="margin: auto;" Size="ButtonSize.Small" Variant="Variant.Text" Shade="Shade.Darker" Icon="add_circle_outline" Text="Add" ButtonStyle="ButtonStyle.Secondary" />
   protected async Task InsertRow()
   {

           if (editMode == DataGridEditMode.Single)
           {
               Reset();
           }

           var releaseNoteEntry = new ReleaseNoteEntryDTO();
           await releaseNoteGrid.InsertRow(releaseNoteEntry);
 
   }

but i cant able to add new row in the inline grid.
refer the below img.
i have empty white space

You can compare your implementation with our demo to find what’s different.

I have compared those and implemented still facing the issue.
But i don't have the latest version mighty be because of that.