File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/twenty-front/src/modules/ui/input/components/internal/date Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import { useRecoilValue } from 'recoil';
7
7
import { DateFormat } from '@/localization/constants/DateFormat' ;
8
8
import { dateTimeFormatState } from '@/localization/states/dateTimeFormatState' ;
9
9
import { DATE_BLOCKS } from '@/ui/input/components/internal/date/constants/DateBlocks' ;
10
- import { getDateMask } from '@/ui/input/components/internal/date/constants/DateMask' ;
11
10
import { DATE_TIME_BLOCKS } from '@/ui/input/components/internal/date/constants/DateTimeBlocks' ;
12
11
import { MAX_DATE } from '@/ui/input/components/internal/date/constants/MaxDate' ;
13
12
import { MIN_DATE } from '@/ui/input/components/internal/date/constants/MinDate' ;
13
+ import { getDateMask } from '@/ui/input/components/internal/date/utils/getDateMask' ;
14
14
import { getDateTimeMask } from '@/ui/input/components/internal/date/utils/getDateTimeMask' ;
15
15
import { isNull } from '@sniptt/guards' ;
16
16
import { isDefined } from 'twenty-shared/utils' ;
Original file line number Diff line number Diff line change 1
1
import { TIME_MASK } from '@/ui/input/components/internal/date/constants/TimeMask' ;
2
2
3
3
import { DateFormat } from '@/localization/constants/DateFormat' ;
4
- import { getDateMask } from '../constants/DateMask ' ;
4
+ import { getDateMask } from './getDateMask ' ;
5
5
6
6
export const getDateTimeMask = ( dateFormat : DateFormat ) : string => {
7
7
return `${ getDateMask ( dateFormat ) } ${ TIME_MASK } ` ;
You can’t perform that action at this time.
0 commit comments