chore(installer): remove orphaned InstallerService DI registration

This commit is contained in:
Mika Kuns
2026-04-15 11:10:24 +02:00
parent b5455a1965
commit b7a8d78d4a

View File

@@ -90,8 +90,6 @@ public partial class App : Application
// Core
sc.AddSingleton<InstallContext>();
sc.AddSingleton<PageResolver>();
sc.AddSingleton<InstallerService>();
// HTTP + release client
sc.AddSingleton(_ => new HttpClient { Timeout = TimeSpan.FromSeconds(15) });
sc.AddSingleton<IReleaseClient>(sp => new ReleaseClient(sp.GetRequiredService<HttpClient>()));