Skip to content

Commit

Permalink
Correction for initial tournament date filtering values
Browse files Browse the repository at this point in the history
  • Loading branch information
jordus100 committed May 25, 2024
1 parent 438c728 commit cba490d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forms/TournamentFilterForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const TournamentFilterForm = forwardRef(function TournamentFilterForm({
}, ref) {
const [tournamentTitle, setTournamentTitle] = useState('');
const [minPlayOutDate, setMinPlayOutDate] = useState(new Date(0));
const [maxPlayOutDate, setMaxPlayOutDate] = useState(new Date());
const [maxPlayOutDate, setMaxPlayOutDate] = useState(new Date(new Date().setFullYear(new Date().getFullYear() + 10)));
const [creator, setCreator] = useState('');
const [userParticipation, setUserParticipation] = useState('');

Expand Down

0 comments on commit cba490d

Please sign in to comment.