We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d099b2 commit d11dbf7Copy full SHA for d11dbf7
src/functions/update/handler.ts
@@ -14,7 +14,7 @@ import { Document, WithId } from 'mongodb';
14
// import AWS from 'aws-sdk';
15
dotenv.config({ path: path.resolve(process.cwd(), '.env') });
16
17
-const CHECK_IN_START_DATE = new Date('2025-10-4T10:30:00');
+const CHECK_IN_START_DATE = new Date('2025-10-04T10:30:00');
18
const CHECK_IN_CUT_OFF = new Date(CHECK_IN_START_DATE.getTime() + 3 * 24 * 60 * 60 * 1000); // 3 days after check-in start
19
20
const update: ValidatedEventAPIGatewayProxyEvent<typeof schema> = async (event) => {
0 commit comments