Skip to content

Commit

Permalink
fix(SalaryAndBenefits): change default examinationYear
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiazom committed Aug 23, 2024
1 parent 1281484 commit d066f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/salaryAndBenefits/SalaryAndBenefits.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const SalaryAndBenefits = ({ salaryAndBenefits }: SalaryAndBenefitsProps) => {
const maxExaminationYear = currentYear - 1;

const [formState, setFormState] = useState<SalaryCalculatorFormState>({
examinationYear: currentYear,
examinationYear: currentYear - 1,
selectedDegree: "bachelor",
});
const [salary, setSalary] = useState<number | null>(null);
Expand Down

0 comments on commit d066f66

Please sign in to comment.