diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx index 3f31267..91d9b8a 100644 --- a/src/app/profile/page.tsx +++ b/src/app/profile/page.tsx @@ -37,8 +37,8 @@ export default function Profile() { const [joinTeamCode, setJoinTeamCode] = useState(""); const [joining, setJoining] = useState(false); - // Check if editing is allowed (until end of Jan 1st, 2026) - const isEditingAllowed = new Date() < new Date('2026-01-02T00:00:00'); + // Check if editing is allowed (until Jan 1st, 2026) + const isEditingAllowed = new Date() < new Date('2026-01-02T09:00:00'); useEffect(() => { if (user == null || user === undefined) {