We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I try to add year in moment +543 but i cannot pick a date on 29 february 2567
Expected behavior date picker should be select a date on 29 february 2567
import React from "react"; import DatePicker from "react-native-date-picker"; import { translate } from "../../plugins/i18n/action"; import { toBuddhistYear } from "../../utils"; import moment from "moment"; import { DatePickerProps } from "./datepicker.type"; import { memo } from "../../hooks/memo"; const DatePick: React.FC<DatePickerProps> = ({ dateVisibility = false, selectDate = new Date(), onConfirm = () => {}, onCancel = () => {}, }) => { return ( <DatePicker modal open={dateVisibility} date={selectDate} mode="date" locale="th" maximumDate={new Date()} onConfirm={onConfirm} onCancel={onCancel} /> ); }; export default memo(DatePick);
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I try to add year in moment +543 but i cannot pick a date on 29 february 2567
Expected behavior
date picker should be select a date on 29 february 2567
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered: