bug fixed

This commit is contained in:
Malini 2025-11-10 14:41:54 +05:30
parent 541e5a12a0
commit f5ebecdfbb

View File

@ -702,8 +702,8 @@ const QuarterlyWindows = () => {
} }
value={form.year} value={form.year}
onChange={(e) => handleFormChange('year')(e.target.value)} onChange={(e) => handleFormChange('year')(e.target.value)}
options={Array.from({ length: 6 }).map((_, idx) => { options={Array.from({ length: 7 }).map((_, idx) => {
const yr = 2023 + idx; const yr = 2022 + idx;
return { label: String(yr), value: String(yr) }; return { label: String(yr), value: String(yr) };
})} })}
required required