Skip to content

Commit 1fa2ea5

Browse files
committed
refactor: remove file extensions from imports
1 parent dfb89ce commit 1fa2ea5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/components/credits/CreditsFilters.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import debounce from 'lodash/debounce';
3232
import isEqual from 'lodash/isEqual';
3333
import { FIELD_LABELS, TYPE_REASONS, useCreditsFilters } from '~/composables/useCreditsFilters';
34-
import { buildNodesByKey, renderTreeSelectValue } from '~/utils/tree-select.ts';
34+
import { buildNodesByKey, renderTreeSelectValue } from '~/utils/tree-select';
3535
3636
const { filter, onParamChange, key: creditsFilterKey } = useCreditsFilters();
3737

app/plugins/05.setMetadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { customEndpoint } from '@directus/sdk';
2-
import { useMetadata } from '~/store/metadata.js';
2+
import { useMetadata } from '~/store/metadata';
33

44
export default defineNuxtPlugin(async () => {
55
const metadata = useMetadata();

app/utils/init-google-map.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { useAppearance } from '~/store/appearance.js';
1+
import { useAppearance } from '~/store/appearance';
22

33
const MAP_MIN_ZOOM = 1;
44
const MAP_MAX_ZOOM = 22;

0 commit comments

Comments
 (0)