Skip to content

Commit

Permalink
fix: update membership cycle in form label
Browse files Browse the repository at this point in the history
  • Loading branch information
zeyu2001 committed Aug 2, 2024
1 parent 998a4f6 commit 99e27a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pageComponents/Administrative.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const Administrative = ({ formData, setFormData }) => {
let currMembershipCycle = new Date().getFullYear();
const month = new Date().getMonth();
if (month < 8) {
if (month < 6) {
currMembershipCycle -= 1;
}

Expand Down

0 comments on commit 99e27a5

Please sign in to comment.