diff --git a/components/ChatView/Header.tsx b/components/ChatView/Header.tsx index 4882d6b..9c87ee7 100644 --- a/components/ChatView/Header.tsx +++ b/components/ChatView/Header.tsx @@ -2,7 +2,12 @@ import { useEffect } from "react"; import { useChatStore } from "@/store"; import Icon from "../Icon"; -const Header = () => { +interface Props { + className?: string; +} + +const Header = (props: Props) => { + const { className } = props; const chatStore = useChatStore(); const currentChat = chatStore.currentChat; const title = currentChat?.title || "SQL Chat"; @@ -12,7 +17,11 @@ const Header = () => { }, [title]); return ( -
+