Fixed nullable warnings 7

This commit is contained in:
Tig
2024-07-24 15:09:48 -06:00
parent ff47aa29b9
commit 022050db73
27 changed files with 263 additions and 244 deletions

View File

@@ -12,7 +12,7 @@ public static class Program
Services = ConfigureServices ();
Application.Init ();
Application.Run (Services.GetRequiredService<LoginView> ());
Application.Top.Dispose();
Application.Top?.Dispose();
Application.Shutdown ();
}