added year

This commit is contained in:
Malini 2025-12-29 16:03:05 +05:30
parent 289d989928
commit 20c1fc61d9

View File

@ -449,7 +449,7 @@ const EstablishmentInfo = ({
className="block w-full h-10 rounded-md border-2 border-[#E6D7A2] focus:border-[#92722A] focus:ring-0 px-4 pr-10 text-sm bg-white text-[#9EA2A9] appearance-none cursor-not-allowed"
>
<option value="" disabled>Select year</option>
{["2022", "2023", "2024", "2025"].map(year => (
{["2022", "2023", "2024", "2025","2026","2027","2028","2029","2030"].map(year => (
<option key={year} value={year}>{year}</option>
))}
</select>