diff --git a/src/components/thread/history/index.tsx b/src/components/thread/history/index.tsx index 79f123d..7d0fbec 100644 --- a/src/components/thread/history/index.tsx +++ b/src/components/thread/history/index.tsx @@ -2,6 +2,7 @@ import { Button } from "@/components/ui/button"; import { useThreads } from "@/providers/Thread"; import { Thread } from "@langchain/langgraph-sdk"; import { useEffect } from "react"; + import { getContentString } from "../utils"; import { useQueryParam, StringParam, BooleanParam } from "use-query-params"; import { @@ -11,6 +12,9 @@ import { SheetTitle, } from "@/components/ui/sheet"; import { Skeleton } from "@/components/ui/skeleton"; +import { cn } from "@/lib/utils"; +import { PanelRightOpen } from "lucide-react"; +import { useMediaQuery } from "@/hooks/useMediaQuery"; function ThreadList({ threads, @@ -22,7 +26,7 @@ function ThreadList({ const [threadId, setThreadId] = useQueryParam("threadId", StringParam); return ( -