Skip to content

Commit

Permalink
feat: set default year to 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfromyeg committed Jan 7, 2024
1 parent a726a09 commit e12ecad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Footer: React.FC = () => {
const [token, setToken] = useState<string>("");
const [berealToken, setBerealToken] = useState<string>("");

const [year, setYear] = useState<Option | null>(YEARS[0]);
const [year, setYear] = useState<Option | null>(YEARS[1]);
const [file, setFile] = useState<File | null>(null);
const [mode, setMode] = useState<Option | null>(MODES[0]);

Expand Down

0 comments on commit e12ecad

Please sign in to comment.