From c8b1906bca336b7d8616b37b7911e531bcfa3184 Mon Sep 17 00:00:00 2001 From: Michael Bond Date: Tue, 19 Nov 2024 01:48:55 -0500 Subject: [PATCH] Implement IDisposable --- Pkmds.Web/Components/Layout/MainLayout.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pkmds.Web/Components/Layout/MainLayout.razor.cs b/Pkmds.Web/Components/Layout/MainLayout.razor.cs index f9a78e1e..b4bf62b6 100644 --- a/Pkmds.Web/Components/Layout/MainLayout.razor.cs +++ b/Pkmds.Web/Components/Layout/MainLayout.razor.cs @@ -1,6 +1,6 @@ namespace Pkmds.Web.Components.Layout; -public partial class MainLayout +public partial class MainLayout : IDisposable { private bool isDarkMode; private MudThemeProvider? mudThemeProvider;