Skip to content

Commit

Permalink
Pushed retirement further back 1 day for good measure
Browse files Browse the repository at this point in the history
  • Loading branch information
victorc-bcgov committed Nov 30, 2023
1 parent 4c84713 commit c7a0d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_app/src/store/getters.js
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ export const getters = {
},
daysBeforeRetirement() {
// the DF Pilot retirement party is on January 31, 2024!
const retirementDate = new Date(2024, 0, 31, 0, 0, 0, 0); // note: Javascript counts months starting from zero
const retirementDate = new Date(2024, 1, 1, 0, 0, 0, 0); // note: Javascript counts months starting from zero
const today = new Date();
var differenceTicks = retirementDate.getTime() - today.getTime();
var differenceDays = differenceTicks / (1000 * 3600 * 24);
Expand Down

0 comments on commit c7a0d9f

Please sign in to comment.