DataGrid not rendering?

I have a very simple grid that looks like:
<RadzenGrid AllowFiltering="true" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterMode="FilterMode.Advanced" AllowPaging="true" PageSize="4" AllowSorting="true" Data="@data" TItem="BreakpointStandard" ColumnWidth="200px" AllowColumnResize="true" RowClick="@RowClick"> <Columns> <RadzenGridColumn TItem="BreakpointStandard" Property="BpstandardId" Title="Id" /> <RadzenGridColumn TItem="BreakpointStandard" Property="Bpstandard" Title="Standard" /> </Columns> </RadzenGrid>
I initialize the date in the code behind like:
private IEnumerable data;
protected override async Task OnInitializedAsync()
{
data = await dataService.GetAllBreakpointStandards();
await Props.UpdateStandardList.InvokeAsync(data as List);
}
But I don't see a table. Could I get some help on debugging what I am doing wrong?
Thank you.