diff --git a/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor b/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor index 5843972..52fdc8b 100644 --- a/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor +++ b/src/JobsJobsJobs/Client/Pages/Citizen/Dashboard.razor @@ -23,7 +23,10 @@ else } else { -

You do not have an employment profile established; click “Profile”* in the menu to get started!

+

+ You do not have an employment profile established; click “Edit Profile” in the menu to get + started! +

} @{ /** diff --git a/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml b/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml index cece0ca..58b94f3 100644 --- a/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml +++ b/src/JobsJobsJobs/Server/Properties/PublishProfiles/FolderProfile.pubxml @@ -14,7 +14,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. FileSystem net5.0 - win-x64 + linux-x64 True True 35aeecbf-489d-41c5-9ba3-6e43ad7a8196 diff --git a/src/JobsJobsJobs/Server/Startup.cs b/src/JobsJobsJobs/Server/Startup.cs index df84694..824d4ad 100644 --- a/src/JobsJobsJobs/Server/Startup.cs +++ b/src/JobsJobsJobs/Server/Startup.cs @@ -35,7 +35,7 @@ namespace JobsJobsJobs.Server services.AddDbContext(options => { options.UseNpgsql(Configuration.GetConnectionString("JobsDb"), o => o.UseNodaTime()); - options.LogTo(System.Console.WriteLine, Microsoft.Extensions.Logging.LogLevel.Information); + // options.LogTo(System.Console.WriteLine, Microsoft.Extensions.Logging.LogLevel.Information); }); services.AddSingleton(SystemClock.Instance); services.AddLogging();