From f4289a783c7c84c94d8214b3a8ddbf201c73f3bf Mon Sep 17 00:00:00 2001 From: CH-JASWANTH-KUMAR Date: Thu, 1 Jan 2026 23:27:33 +0530 Subject: [PATCH] Extend problem statement editing deadline to Jan 2nd --- src/app/profile/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index 7200e27..91d9b8a 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -38,7 +38,7 @@ export default function Profile() { const [joining, setJoining] = useState(false); // Check if editing is allowed (until Jan 1st, 2026) - const isEditingAllowed = new Date() < new Date('2026-01-01T00:00:00'); + const isEditingAllowed = new Date() < new Date('2026-01-02T09:00:00'); useEffect(() => { if (user == null || user === undefined) {