From b7a8d78d4a821da01d2d55cd018a219f351997e9 Mon Sep 17 00:00:00 2001 From: Mika Kuns Date: Wed, 15 Apr 2026 11:10:24 +0200 Subject: [PATCH] chore(installer): remove orphaned InstallerService DI registration --- src/ClaudeDo.Installer/App.xaml.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ClaudeDo.Installer/App.xaml.cs b/src/ClaudeDo.Installer/App.xaml.cs index cd57389..31e38f8 100644 --- a/src/ClaudeDo.Installer/App.xaml.cs +++ b/src/ClaudeDo.Installer/App.xaml.cs @@ -90,8 +90,6 @@ public partial class App : Application // Core sc.AddSingleton(); sc.AddSingleton(); - sc.AddSingleton(); - // HTTP + release client sc.AddSingleton(_ => new HttpClient { Timeout = TimeSpan.FromSeconds(15) }); sc.AddSingleton(sp => new ReleaseClient(sp.GetRequiredService()));