We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bebb39 commit 00e1871Copy full SHA for 00e1871
src/generate/dayjs.ts
@@ -100,9 +100,13 @@ const parseLocale = (locale: string) => {
100
return mapLocale || locale.split('_')[0];
101
};
102
103
+/* istanbul ignore next */
104
const parseNoMatchNotice = () => {
- /* istanbul ignore next */
105
- noteOnce(false, 'Not match any format. Please help to fire a issue about this.');
+ // zombieJ:
106
+ // When user typing, its always miss match format.
107
+ // This check is meaningless.
108
+ // https://github.com/ant-design/ant-design/issues/51839
109
+ // noteOnce(false, 'Not match any format. Please help to fire a issue about this.');
110
111
112
const generateConfig: GenerateConfig<Dayjs> = {
0 commit comments