Skip to content

Commit

Permalink
clean(years-modal-button): sort props
Browse files Browse the repository at this point in the history
  • Loading branch information
jerem1508 committed Jan 14, 2025
1 parent 9339eeb commit a3356a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ export default function YearsModalButton() {
</label>
<select
className="fr-select"
defaultValue={currentYear}
id="select"
name="select"
onChange={(e) => {
searchParams.set('annee_universitaire', e.target.value);
window.location.search = searchParams.toString();
}}
defaultValue={currentYear}
>
{
filtersValues.annees_universitaires.all.map((value: string) => (
Expand Down

0 comments on commit a3356a7

Please sign in to comment.