diff --git a/src/dashboardWebView/components/Chatbot/Chatbox.tsx b/src/dashboardWebView/components/Chatbot/Chatbox.tsx index 43ac25ac..f86d2fb4 100644 --- a/src/dashboardWebView/components/Chatbot/Chatbox.tsx +++ b/src/dashboardWebView/components/Chatbot/Chatbox.tsx @@ -1,7 +1,6 @@ import { PaperAirplaneIcon } from '@heroicons/react/24/outline'; import * as React from 'react'; import { useCallback } from 'react'; -import useThemeColors from '../../hooks/useThemeColors'; import * as l10n from '@vscode/l10n'; import { LocalizationKey } from '../../../localization'; @@ -13,7 +12,6 @@ export interface IChatboxProps { export const Chatbox: React.FunctionComponent = ({ isLoading, onTrigger }: React.PropsWithChildren) => { const [message, setMessage] = React.useState(""); const [isFocussed, setIsFocussed] = React.useState(false); - const { getColors } = useThemeColors(); const callAi = useCallback(() => { setTimeout(() => { @@ -29,11 +27,7 @@ export const Chatbox: React.FunctionComponent = ({ isLoading, onT