From caa1e723a491a8e32290d87a5f4e29c5b1ea0acd Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Tue, 16 Jun 2026 09:15:33 -0400 Subject: [PATCH] fix: Final TypeScript fixes Signed-off-by: Hermes Agent --- client/src/components/shared/Spotlight.tsx | 2 +- client/src/hooks/useUtils.ts | 4 ++-- client/src/utils/crdt.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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