diff --git a/client/src/components/shared/Spotlight.tsx b/client/src/components/shared/Spotlight.tsx index 9fc4b1f..2e5d367 100644 --- a/client/src/components/shared/Spotlight.tsx +++ b/client/src/components/shared/Spotlight.tsx @@ -1,5 +1,5 @@ import React, { HTMLAttributes } from 'react' -import { useSpotlightStore } from '../state/spotlightStore' +import { useSpotlightStore } from '../../state/spotlightStore' interface SpotlightProps extends HTMLAttributes {} diff --git a/client/src/hooks/useUtils.ts b/client/src/hooks/useUtils.ts index 3376459..5572582 100644 --- a/client/src/hooks/useUtils.ts +++ b/client/src/hooks/useUtils.ts @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from 'react' +import { useEffect, useState } from 'react' export const useDebounce = (value: T, delay: number): T => { const [debouncedValue, setDebouncedValue] = useState(value) @@ -47,4 +47,4 @@ export const useResizeObserver = ( return () => observer.disconnect() }, [ref, onResize]) -} +} \ No newline at end of file diff --git a/client/src/utils/crdt.ts b/client/src/utils/crdt.ts index 237ec92..73d636a 100644 --- a/client/src/utils/crdt.ts +++ b/client/src/utils/crdt.ts @@ -36,4 +36,4 @@ export const destroyCRDT = () => { doc?.destroy() doc = null provider = null -} +} \ No newline at end of file