fix: remove unnecessary whitespace in development environment check

This commit is contained in:
MahanCh
2025-09-07 17:22:01 +03:30
parent 1daaeff194
commit 58c015b151

View File

@@ -314,6 +314,7 @@ app.UseCors("AllowSpecificOrigins");
//the backend Tester
if (builder.Environment.IsDevelopment())
{
using var scope = app.Services.CreateScope();
var tester = scope.ServiceProvider.GetRequiredService<Tester>();