From 4aef2acd6646ffdeaeabf79718914192541c5c76 Mon Sep 17 00:00:00 2001 From: Vincent Baaij Date: Wed, 6 Mar 2024 23:07:41 +0100 Subject: [PATCH] Missed one ADO error --- examples/Demo/Shared/Shared/DemoNavProvider.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Demo/Shared/Shared/DemoNavProvider.cs b/examples/Demo/Shared/Shared/DemoNavProvider.cs index 5ac7b39be1..5ec9879f6c 100644 --- a/examples/Demo/Shared/Shared/DemoNavProvider.cs +++ b/examples/Demo/Shared/Shared/DemoNavProvider.cs @@ -84,8 +84,8 @@ public DemoNavProvider() title: "Services", expanded: false, gap: "10px", - children: - [ + children: new List + { new NavLink( href: "/DialogService", icon: new Icons.Regular.Size20.AppGeneric(), @@ -103,7 +103,7 @@ public DemoNavProvider() icon: new Icons.Regular.Size20.FoodToast(), title: "ToastService" ) - ] + } ) } ),