From 5a22fb999747ed991158bc77f191b738124f3fd6 Mon Sep 17 00:00:00 2001 From: dangershony Date: Fri, 6 Jun 2025 14:58:32 +0100 Subject: [PATCH] Use the EndDate instead of StartDate to allow to invest --- src/Angor/Shared/Services/ApplicationLogicService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angor/Shared/Services/ApplicationLogicService.cs b/src/Angor/Shared/Services/ApplicationLogicService.cs index 2ad12915b..97a474031 100644 --- a/src/Angor/Shared/Services/ApplicationLogicService.cs +++ b/src/Angor/Shared/Services/ApplicationLogicService.cs @@ -22,7 +22,7 @@ public bool IsInvestmentWindowOpen(ProjectInfo? project) var now = DateTime.UtcNow; - if (now <= project.StartDate) return true; + if (now <= project.EndDate) return true; return false; }