fix: include current week in keys

This commit is contained in:
Cory Dransfeldt 2024-04-18 14:27:43 -07:00 committed by GitHub
parent 87ae2d6297
commit cba4773c11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,6 +15,8 @@ const getKeys = (months = 1) => {
count++;
}
keys.push(`${currentDate.year}-${currentDate.weekNumber}`)
return keys
}