range issue
Closed this issue · 4 comments
EdwardKashulsky commented
farhoudshapouran commented
I tested it on iOS, Android, and the web but I cannot reproduce this, can you reply with your code?
hoax3 commented
Getting the same thing on IOS. On latest version and basically copying what you have done in the example App.tsx. Removed all styling and no avail. Seem to only be the last row of each month.
...
const [range, setRange] = useState({ startDate: undefined, endDate: undefined })
const today = dayjs()
...
<DateTimePicker mode='range' startDate={range.startDate} endDate={range.endDate} date={today} onChange={(params) => setRange(params)} />
...
farhoudshapouran commented
This bug was fixed #87
jtsimoes commented
@farhoudshapouran Can you please publish a new version with this fix?