From 23ea27e99533138f955069eccd96f0d2c09714b9 Mon Sep 17 00:00:00 2001 From: halcyonjac Date: Tue, 15 Oct 2024 11:30:07 +0100 Subject: [PATCH] fix starting date of character information v3 --- src/views/Exercise/Applications/Application.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Exercise/Applications/Application.vue b/src/views/Exercise/Applications/Application.vue index 168d8c616..db86e12ed 100644 --- a/src/views/Exercise/Applications/Application.vue +++ b/src/views/Exercise/Applications/Application.vue @@ -457,7 +457,7 @@ export default { }, characterInformationVersion() { // All exercises launching on or after 15/10/24 use the V3 Character questions - if (this.exercise.applicationOpenDate > new Date('2023-10-15')) { + if (this.exercise.applicationOpenDate > new Date('2024-10-15')) { return 3; } return this.applicationVersion >= 2 ? 2 : 1;