diff --git a/src/components/ProfileType/ProfileTypeFormDateSelection/ProfileTypeFormDateSelection.tsx b/src/components/ProfileType/ProfileTypeFormDateSelection/ProfileTypeFormDateSelection.tsx index fb08b585756d0410455672dc8ead00a393e3f669..a3d7d056eb58991da159476a840d5e40b1edcecb 100644 --- a/src/components/ProfileType/ProfileTypeFormDateSelection/ProfileTypeFormDateSelection.tsx +++ b/src/components/ProfileType/ProfileTypeFormDateSelection/ProfileTypeFormDateSelection.tsx @@ -133,21 +133,6 @@ const ProfileTypeFormDateSelection = ({ </div> {answer !== null && ( <div className="select-container"> - <div className="date-select"> - <Select - labelId="selectYearDate" - className="year" - defaultValue={selectedYear} - value={selectedYear} - onChange={e => handleSelectYear(e)} - > - {selectYears.map(year => ( - <MenuItem value={year} key={year} className="date-option"> - {year} - </MenuItem> - ))} - </Select> - </div> <div className="date-select"> <Select labelId="selectMonthDate" @@ -167,6 +152,21 @@ const ProfileTypeFormDateSelection = ({ ))} </Select> </div> + <div className="date-select"> + <Select + labelId="selectYearDate" + className="year" + defaultValue={selectedYear} + value={selectedYear} + onChange={e => handleSelectYear(e)} + > + {selectYears.map(year => ( + <MenuItem value={year} key={year} className="date-option"> + {year} + </MenuItem> + ))} + </Select> + </div> </div> )} </div>