chore: simplify plugin

This commit is contained in:
Cory Dransfeldt 2024-04-18 18:11:15 -07:00
parent 2d9265aae8
commit 83c9b6ca95
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ const getKeys = (months = 1) => {
const currentDate = DateTime.now()
const weeks = Math.floor((currentDate.daysInMonth * months) / 7)
let count = 0
const keys = []
const keys = [`${currentDate.year}-${currentDate.weekNumber}`]
while (count < weeks) {
const weeks = 1 * (count + 1)
@ -15,8 +15,6 @@ const getKeys = (months = 1) => {
count++;
}
keys.push(`${currentDate.year}-${currentDate.weekNumber}`)
return keys
}