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