File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
import type { Dayjs } from 'dayjs' ;
2
2
import dayjs from 'dayjs' ;
3
- import { noteOnce } from 'rc-util/lib/warning' ;
4
3
import weekday from 'dayjs/plugin/weekday' ;
5
4
import localeData from 'dayjs/plugin/localeData' ;
6
5
import weekOfYear from 'dayjs/plugin/weekOfYear' ;
@@ -100,9 +99,13 @@ const parseLocale = (locale: string) => {
100
99
return mapLocale || locale . split ( '_' ) [ 0 ] ;
101
100
} ;
102
101
102
+ /* istanbul ignore next */
103
103
const parseNoMatchNotice = ( ) => {
104
- /* istanbul ignore next */
105
- noteOnce ( false , 'Not match any format. Please help to fire a issue about this.' ) ;
104
+ // zombieJ:
105
+ // When user typing, its always miss match format.
106
+ // This check is meaningless.
107
+ // https://github.com/ant-design/ant-design/issues/51839
108
+ // noteOnce(false, 'Not match any format. Please help to fire a issue about this.');
106
109
} ;
107
110
108
111
const generateConfig : GenerateConfig < Dayjs > = {
You can’t perform that action at this time.
0 commit comments