From 316c7e1f636f3e545a01017460b341a077cf78d2 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 6 Nov 2019 20:01:32 -0500 Subject: [PATCH] [F] Fix 'cannot getTime() of undefined' --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index f83db00..d646455 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -56,5 +56,5 @@ export default class Constants }; // Terms (TODO: Actually get the terms dynamically - public static TERMS = [new Date('2019-09-04'), new Date('2019-11-01')]; + public static TERMS = [new Date('Sep 04 2019'), new Date('Nov 01 2019'), new Date('Feb 02 2020')]; }