fix: remove console.log from notAvailable function in SingleDatePicker

This commit is contained in:
Astrian Zheng 2025-02-24 13:49:15 +11:00
parent cdfd90a467
commit e2586cd5bc
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -86,7 +86,6 @@
}
function notAvailable(date: Date) {
console.log(`currentMonth: ${currentMonth.value}, date: ${date.toString()}`)
return currentMonth.value !== date.getMonth() //TODO: available date ranges
}