aboutsummaryrefslogtreecommitdiff
path: root/apps/web
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-07-25 17:27:23 -0500
committerDhravya Shah <[email protected]>2024-07-25 17:27:23 -0500
commitb04ca55ae731bf882cc3e4f35358a6c1a7374976 (patch)
treefd959af32f5331a9cf3e58b08aca2487a3fad3d5 /apps/web
parentMerge branch 'main' of github.com:supermemoryai/supermemory (diff)
downloadsupermemory-b04ca55ae731bf882cc3e4f35358a6c1a7374976.tar.xz
supermemory-b04ca55ae731bf882cc3e4f35358a6c1a7374976.zip
merged
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/(dash)/home/history.tsx4
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);