diff options
| author | Dhravya Shah <[email protected]> | 2024-07-25 17:27:23 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-25 17:27:23 -0500 |
| commit | b04ca55ae731bf882cc3e4f35358a6c1a7374976 (patch) | |
| tree | fd959af32f5331a9cf3e58b08aca2487a3fad3d5 | |
| parent | Merge branch 'main' of github.com:supermemoryai/supermemory (diff) | |
| download | supermemory-b04ca55ae731bf882cc3e4f35358a6c1a7374976.tar.xz supermemory-b04ca55ae731bf882cc3e4f35358a6c1a7374976.zip | |
merged
| -rw-r--r-- | apps/web/app/(dash)/home/history.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/web/app/(dash)/home/history.tsx b/apps/web/app/(dash)/home/history.tsx index 057330ac..a4cd11d0 100644 --- a/apps/web/app/(dash)/home/history.tsx +++ b/apps/web/app/(dash)/home/history.tsx @@ -1,12 +1,8 @@ -import { getChatHistory } from "@repo/web/app/actions/fetchers"; import { ArrowLongRightIcon } from "@heroicons/react/24/outline"; import { Skeleton } from "@repo/ui/shadcn/skeleton"; -import Link from "next/link"; import { memo, useEffect, useState } from "react"; import { motion } from "framer-motion"; -import { chatThreads } from "@/server/db/schema"; import { getQuerySuggestions } from "@/app/actions/doers"; -import { Button } from "@repo/ui/shadcn/button"; const History = memo(({ setQuery }: { setQuery: (q: string) => void }) => { const [suggestions, setSuggestions] = useState<string[] | null>(null); |