Skip to content

Commit

Permalink
vehicle year fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinMacaulay committed Nov 30, 2023
1 parent ec33a23 commit 858c8d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export const CreateEvent = () => {
};

const generateYearOptions = () => {
const currentYear = new Date().getFullYear();
const currentYear = new Date().getFullYear() + 1;
const startYear = 1900;
const years = [];

Expand Down

0 comments on commit 858c8d8

Please sign in to comment.