chore: update some debugging code

This commit is contained in:
Astrian Zheng 2025-02-19 21:06:57 +11:00
parent 1c532851ac
commit 047b36bd56
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ export default () => {
}
return (<div className='app'>
<div className="border">
<WeekPicker
value={{

View File

@ -34,7 +34,7 @@ export default ({ value, onSelect, localization }: Props) => {
const [selectedDate, setSelectedDate] = useState(new Date())
const [dates, setDates] = useState<Date[]>([])
const [l10nDays, setL10nDays] = useState<string[]>([])
const [selectMonth, setSelectMonth] = useState(true)
const [selectMonth, setSelectMonth] = useState(false)
useEffect(() => {
setDates(getCalendarDates(currentMonth, currentYear))