"use client"; import { DragDropContext, Droppable, OnDragEndResponder, } from "@hello-pangea/dnd"; import { useAppConfig, useChatStore } from "@/app/store"; import Locale from "@/app/locales"; // import { useLocation, useNavigate } from "react-router-dom"; import { useRouter, usePathname } from "next/navigation"; import AddIcon from "@/app/icons/addIcon.svg"; import NextChatTitle from "@/app/icons/nextchatTitle.svg"; import Modal from "@/app/components/Modal"; import SessionItem from "@/app/containers/Chat/components/SessionItem"; export default function Page() { const [sessions, selectedIndex, selectSession, moveSession] = useChatStore( (state) => [ state.sessions, state.currentSessionIndex, state.selectSession, state.moveSession, ], ); const config = useAppConfig(); const { isMobileScreen } = config; const chatStore = useChatStore(); const pathname = usePathname(); const onDragEnd: OnDragEndResponder = (result) => { const { destination, source } = result; if (!destination) { return; } if ( destination.droppableId === source.droppableId && destination.index === source.index ) { return; } moveSession(source.index, destination.index); }; return (