Skip to content

Commit a13c6b1

Browse files
Rename file
1 parent 78f247e commit a13c6b1

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/components/date-filter-v2/date-filter-v2.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
type RelativeDateFilterValue,
1818
} from './date-filter-v2.types';
1919
import isRelativeDateFilterValue from './helpers/is-relative-date-filter-value';
20-
import stringifyDateFilterValue from './helpers/stringify-date-value';
20+
import stringifyDateFilterValue from './helpers/stringify-date-filter-value';
2121

2222
export default function DateFilterV2({
2323
label,

src/components/date-filter-v2/helpers/__tests__/stringify-date-value.test.ts renamed to src/components/date-filter-v2/helpers/__tests__/stringify-date-filter-value.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import dayjs from '@/utils/datetime/dayjs';
22

3-
import stringifyDateFilterValue from '../stringify-date-value';
3+
import stringifyDateFilterValue from '../stringify-date-filter-value';
44

55
// Mock the current date to be fixed
66
jest.useFakeTimers().setSystemTime(new Date('2023-05-25'));

src/views/domain-workflows-basic/config/domain-workflows-basic-filters.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createElement } from 'react';
22

33
import DateFilterV2 from '@/components/date-filter-v2/date-filter-v2';
44
import { type DateFilterValue } from '@/components/date-filter-v2/date-filter-v2.types';
5-
import stringifyDateFilterValue from '@/components/date-filter-v2/helpers/stringify-date-value';
5+
import stringifyDateFilterValue from '@/components/date-filter-v2/helpers/stringify-date-filter-value';
66
import ListFilter from '@/components/list-filter/list-filter';
77
import { type PageFilterConfig } from '@/components/page-filters/page-filters.types';
88
import type domainPageQueryParamsConfig from '@/views/domain-page/config/domain-page-query-params.config';

0 commit comments

Comments
 (0)