diff --git a/DeepDrftPublic.Client/Services/ITrackDataService.cs b/DeepDrftPublic.Client/Services/ITrackDataService.cs
index 842ec42..8bf97eb 100644
--- a/DeepDrftPublic.Client/Services/ITrackDataService.cs
+++ b/DeepDrftPublic.Client/Services/ITrackDataService.cs
@@ -5,13 +5,9 @@ using NetBlocks.Models;
namespace DeepDrftPublic.Client.Services;
///
-/// Track metadata fetch abstraction with two render-mode-specific implementations:
-///
-/// - Server prerender pass: TrackDirectDataService in the DeepDrftPublic host
-/// resolves in-process (EF Core / SQL) and
-/// avoids a loopback HTTP hop.
-/// - WASM interactive pass: TrackClientDataService in this assembly delegates
-/// to over HTTP.
+/// Track metadata fetch abstraction. Both SSR and WASM passes are served by
+/// TrackClientDataService in this assembly, which delegates to
+/// over HTTP.
///
/// Components inject this single seam so they do not branch on render mode.
///
diff --git a/DeepDrftPublic/DeepDrftPublic.csproj b/DeepDrftPublic/DeepDrftPublic.csproj
index ce498ee..8e8bdcc 100644
--- a/DeepDrftPublic/DeepDrftPublic.csproj
+++ b/DeepDrftPublic/DeepDrftPublic.csproj
@@ -8,18 +8,6 @@
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
diff --git a/DeepDrftPublic/appsettings.json b/DeepDrftPublic/appsettings.json
index aba08d6..a66335c 100644
--- a/DeepDrftPublic/appsettings.json
+++ b/DeepDrftPublic/appsettings.json
@@ -8,7 +8,7 @@
"AllowedHosts": "*",
"ApiUrls": {
"ContentApi": "http://localhost:12777/",
- "SqlApi": "https://localhost:5002"
+ "SqlApi": "https://localhost:5002/"
},
"ForwardedHeaders": {
"DisableHttpsRedirection": "true"