"use client"; import { useKnowledgeToFeedContext } from "@/lib/context/KnowledgeToFeedProvider/hooks/useKnowledgeToFeedContext"; import { useCustomDropzone } from "@/lib/hooks/useDropzone"; import { cn } from "@/lib/utils"; import { ActionsBar } from "./components/ActionsBar"; import { ChatDialogueArea } from "./components/ChatDialogueArea/ChatDialogue"; import { useChatNotificationsSync } from "./hooks/useChatNotificationsSync"; const SelectedChatPage = (): JSX.Element => { const { getRootProps } = useCustomDropzone(); const { shouldDisplayFeedCard } = useKnowledgeToFeedContext(); useChatNotificationsSync(); return (