Try your search with a different keyword or use * as a wildcard.
@model ProductDetailsModel
@if (Model.VideoModels.Any())
{
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBeforeVideos, additionalData = Model })
@foreach (var video in Model.VideoModels)
{
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterVideos, additionalData = Model })
}