Skip to content

Commit

Permalink
fix: 2023 option not available - #2838 (#2840)
Browse files Browse the repository at this point in the history
* fix: 2023 option not available

* chore: revert formatting
  • Loading branch information
kevin-hashimoto committed Feb 28, 2024
1 parent ed330c8 commit e8753a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ const ComplianceReportingPage = (props) => {
{
Array.from({ length: new Date().getFullYear() - 2017 }, (_, index) => {
const year = new Date().getFullYear() - index + 1
if (year >= 2023) return null
if (year >= 2024) return null
return (
<option key={year} value={year}>
{year}
Expand Down Expand Up @@ -499,4 +499,4 @@ ComplianceReportingPage.propTypes = {
setStateFilter: PropTypes.func.isRequired
}

export default ComplianceReportingPage
export default ComplianceReportingPage

0 comments on commit e8753a6

Please sign in to comment.