Hugo Burguete

Results 15 comments of Hugo Burguete

@bon-alexis What date format did you use? I just tested it with `ddMMyyyy` and it displays the date as expected. If you have single digit date formats in either the...

@bon-alexis The repo maintainers can feel free to correct me but, as far as I can tell, the date you enter in the input needs to be formatted in the...

This worked for me: ``` import DatePicker from "react-datepicker"; import { offset } from "@floating-ui/react"; ... ``` It may be worth checking what your middlewares variable is outputting. _EDIT:_ Flip...

You can change your date format to `kk:mm` to achieve this. You can find all the available date time formats [here](https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table). kk corresponds to hours between 1 and 24. But...

You can use the property `timeCaption` to change the "Time" wording. You find an example [here](https://reactdatepicker.com/#example-select-time): ``` ```