diff --git a/src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml b/src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml index 8e5de940c5..19ae842759 100644 --- a/src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml +++ b/src/Umbraco.Web.UI/Views/Partials/BlockList/Default.cshtml @@ -8,13 +8,6 @@ { if (layout?.Udi == null) { continue; } var data = layout.Data; - try - { - @Html.Partial("BlockList/Components/" + data.ContentType.Alias, layout) - } - catch (Exception ex) - { - global::Umbraco.Core.Composing.Current.Logger.Error(typeof(BlockListModel), ex, "Could not display block list component for content type {0}", data?.ContentType?.Alias); - } + @Html.Partial("BlockList/Components/" + data.ContentType.Alias, layout) }