You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that there should be name of 2 months but it's a single month
The solution :
Replace
this
// rest of the code <DatePickerContext>{(api)=>{constoffset=createMemo(()=>api().getOffset({months: 1}))return(<><DatePickerViewControl><DatePickerPrevTrigger/><DatePickerViewTrigger><DatePickerRangeText/></DatePickerViewTrigger><DatePickerNextTrigger/></DatePickerViewControl>
// rest of the code
with this
// rest of the code <DatePickerContext>{(api)=>{constoffset=createMemo(()=>api().getOffset({months: 1}))return(<><DatePickerViewControl><DatePickerPrevTrigger/><divclass="w-full font-medium text-center text-sm">{api().visibleRangeText.start}</div><divclass="w-full font-medium text-center text-sm">{api().visibleRangeText.end}</div><DatePickerNextTrigger/></DatePickerViewControl>
// rest of the code
The text was updated successfully, but these errors were encountered:
The issue :
Note that there should be name of 2 months but it's a single month
The solution :
Replace
this
with this
The text was updated successfully, but these errors were encountered: