Skip to content

Commit

Permalink
Bugfix/Character Information v3 in Application View (#2590)
Browse files Browse the repository at this point in the history
  • Loading branch information
HalcyonJAC authored Oct 15, 2024
1 parent 4170fac commit 7910a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Exercise/Applications/Application.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7910a76

Please sign in to comment.