remove unused import

This commit is contained in:
Simon Knott 2025-02-14 14:40:05 +01:00
parent 5890b03454
commit 6ac45df216
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -27,7 +27,7 @@ import { fixTestPrompt } from '@web/components/prompts';
import type { GitCommitInfo } from '@testIsomorphic/types';
import { AIConversation } from './aiConversation';
import { ToolbarButton } from '@web/components/toolbarButton';
import { useIsLLMAvailable, useLLMChat, useLLMConversation } from './llm';
import { useIsLLMAvailable, useLLMChat } from './llm';
import { useAsyncMemo } from '@web/uiUtils';
const GitCommitInfoContext = React.createContext<GitCommitInfo | undefined>(undefined);