in src/Saas.Application/Saas.Application.Web/Pages/Index.cshtml.cs [25:42]
public async Task<IActionResult> OnGetAsync(string? route)
{
activeRoute = route ?? string.Empty;
if (DisplayTenantInfo)
{
try
{
tenantData = await _tenantService.GetTenantInfoByRouteAsync(activeRoute);
}
catch
{
}
}
return Page();
}