From b04ca55ae731bf882cc3e4f35358a6c1a7374976 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Thu, 25 Jul 2024 17:27:23 -0500 Subject: [PATCH] merged --- apps/web/app/(dash)/home/history.tsx | 4 ---- 1 file changed, 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(null);