fix: remove console.log from selectDate function in SingleDatePicker

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

View File

@ -91,7 +91,6 @@
} }
function selectDate(date: Date) { function selectDate(date: Date) {
console.log(date)
emit('update:modelValue', date) emit('update:modelValue', date)
} }