diff --git a/dotnet/samples/05-end-to-end/AgentWebChat/AgentWebChat.AgentHost/Program.cs b/dotnet/samples/05-end-to-end/AgentWebChat/AgentWebChat.AgentHost/Program.cs index b0713fc6abb..b2e747d7874 100644 --- a/dotnet/samples/05-end-to-end/AgentWebChat/AgentWebChat.AgentHost/Program.cs +++ b/dotnet/samples/05-end-to-end/AgentWebChat/AgentWebChat.AgentHost/Program.cs @@ -165,7 +165,7 @@ Once the user has deduced what type (knight or knave) both Alice and Bob are, te var app = builder.Build(); app.MapOpenApi(); -app.UseSwaggerUI(options => options.SwaggerEndpoint("/openapi/v1.json", "Agents API")); +app.UseSwaggerUI(options => options.SwaggerEndpoint("/openapi/v1.json", "Agents API")); // CodeQL [SM04686] Swagger UI is intentionally enabled because this is a sample application, not a production deployment. // Configure the HTTP request pipeline. app.UseExceptionHandler();