diff --git a/src/TimesheetGPT.Core/TimesheetGPT.Core.csproj b/src/TimesheetGPT.Core/TimesheetGPT.Core.csproj
index 55e718c..d49d3b0 100644
--- a/src/TimesheetGPT.Core/TimesheetGPT.Core.csproj
+++ b/src/TimesheetGPT.Core/TimesheetGPT.Core.csproj
@@ -4,6 +4,7 @@
net8.0
enable
enable
+ 7b1d5a43-583d-46f2-8915-21656498844d
diff --git a/src/TimesheetGPT.WebUI/Pages/Index.razor b/src/TimesheetGPT.WebUI/Pages/Index.razor
index 43a49ea..e4ac9c3 100644
--- a/src/TimesheetGPT.WebUI/Pages/Index.razor
+++ b/src/TimesheetGPT.WebUI/Pages/Index.razor
@@ -4,19 +4,15 @@
@using Microsoft.Graph
@using TimesheetGPT.Core.Models
@using TimesheetGPT.Core.Services
-@using TimesheetGPT.WebUI.Services
@inject GraphServiceClient GraphServiceClient
@inject MicrosoftIdentityConsentAndConditionalAccessHandler ConsentHandler
@inject TimesheetService TimesheetService
Generate Timesheet
- @if (!string.IsNullOrEmpty(_name))
- {
Hi @_name, what day would you like to generate a timesheet for?
- }
? _meetings;
string? _summaryText;
DateTime? _date = DateTime.Today;
- string? _name;
+ string _name = "...";
string? _extraPrompt;
protected async override Task OnInitializedAsync()