diff --git a/src/Angor/Client/Pages/Founder.razor b/src/Angor/Client/Pages/Founder.razor index fb2b9fde..0d21ba15 100644 --- a/src/Angor/Client/Pages/Founder.razor +++ b/src/Angor/Client/Pages/Founder.razor @@ -34,14 +34,19 @@ - +
@@ -224,5 +229,14 @@ NavigationManager.NavigateTo("/create"); } + private string GetCreateButtonTooltip() + { + if (founderProjects.Count >= 15) + return "You have reached the maximum number of projects. Please manage your existing projects."; + if (scanningForProjects) + return "Scanning in progress..."; + return "Create a new project."; + } + } \ No newline at end of file