Skip to content

Commit

Permalink
fix rebates display list
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Oct 28, 2024
1 parent 018ffcf commit 0d8650d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/migrate/MigrationTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ const ExtensionTab = ({
const [activeTab, setNameListTab] = useState<ExtensionTabType>('eligible')

const claimedNames = allNames.filter(
(name) => name.expiryDate && name.expiryDate.date > new Date(2030, 12, 31),
(name) => name.expiryDate && name.expiryDate.date > new Date(2030, 11, 31, 0, 0),
)

const eligibleNames = allNames.filter((name) => !claimedNames.includes(name))
Expand Down

0 comments on commit 0d8650d

Please sign in to comment.