diff --git a/components/TempDesignSystem/Form/Date/index.tsx b/components/TempDesignSystem/Form/Date/index.tsx index 800adcb59..25caf72f3 100644 --- a/components/TempDesignSystem/Form/Date/index.tsx +++ b/components/TempDesignSystem/Form/Date/index.tsx @@ -31,7 +31,7 @@ export default function DateSelect({ name, registerOptions = {} }: DateProps) { value: month, label: `${month}`, })) - const years = rangeArray(1900, currentYear) + const years = rangeArray(1900, currentYear - 18) .reverse() .map((year) => ({ value: year, label: `${year}` }))