diff --git a/src/features/maps/useGoogleMap.ts b/src/features/maps/useGoogleMap.ts index 76e47f9..a785c1b 100644 --- a/src/features/maps/useGoogleMap.ts +++ b/src/features/maps/useGoogleMap.ts @@ -3,7 +3,7 @@ import { colors } from '@/contants'; import { useCollectionStore } from '@/features/collections/useCollectionStore'; import { useEventStore } from '@/features/events/useEventStore'; import { useGlobalStore } from '@/features/global/useGlobalStore'; -import { getCurrentPosition, watchPosition } from '@/utils/geolocation'; +import { getCurrentPosition, watchPosition } from '@/utils/geolocation.util'; export function useGoogleMap() { const globalStore = useGlobalStore(); diff --git a/src/features/maps/useNaverMap.ts b/src/features/maps/useNaverMap.ts index 650fd4b..79e8e8f 100644 --- a/src/features/maps/useNaverMap.ts +++ b/src/features/maps/useNaverMap.ts @@ -3,7 +3,7 @@ import { colors } from '@/contants'; import { useCollectionStore } from '@/features/collections/useCollectionStore'; import { useEventStore } from '@/features/events/useEventStore'; import { useGlobalStore } from '@/features/global/useGlobalStore'; -import { getCurrentPosition, watchPosition } from '@/utils/geolocation'; +import { getCurrentPosition, watchPosition } from '@/utils/geolocation.util'; export function useNaverMap() { const globalStore = useGlobalStore(); diff --git a/src/features/search/SearchInput.tsx b/src/features/search/SearchInput.tsx index 3207691..e713fd2 100644 --- a/src/features/search/SearchInput.tsx +++ b/src/features/search/SearchInput.tsx @@ -2,7 +2,7 @@ import { Button, Card, Input } from '@chakra-ui/react'; import React, { DetailedHTMLProps, HTMLAttributes, useState } from 'react'; import { useProjectStore } from '@/features/projects/useProjectStore'; import { useSearchQuery } from '@/features/search/useSearchQuery'; -import { useDebounceValue } from '@/utils/debounce'; +import { useDebounceValue } from '@/utils/debounce.util'; import type { Place } from '@/types'; export function SearchInput({ diff --git a/src/utils/debounce.ts b/src/utils/debounce.util.ts similarity index 100% rename from src/utils/debounce.ts rename to src/utils/debounce.util.ts diff --git a/src/utils/geolocation.ts b/src/utils/geolocation.util.ts similarity index 100% rename from src/utils/geolocation.ts rename to src/utils/geolocation.util.ts diff --git a/src/utils/waitForGeocoder.ts b/src/utils/waitForGeocoder.util.ts similarity index 100% rename from src/utils/waitForGeocoder.ts rename to src/utils/waitForGeocoder.util.ts