Hardcoded all production string references.

This commit is contained in:
Daniel Wathen
2023-01-06 11:15:56 -07:00
parent ddbd8fd281
commit 8077f6222e
4 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,7 @@ namespace ReportingServices.UI.Controllers
{
_logger = logger;
_configuration = configuration;
_baseUrl = _configuration.GetValue<string>("BaseAPIAddress");
_baseUrl = "http://localhost:50201/api/";
_logger.LogInformation("Base API Address: {baseUrl}", _baseUrl);
}