From 1a3b66cca0c2611931d96ccf319ba06ea48e20cd Mon Sep 17 00:00:00 2001 From: zaidmukaddam Date: Thu, 5 Sep 2024 16:55:24 +0530 Subject: [PATCH] fix: Clear suggested questions when asking followups --- app/search/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/search/page.tsx b/app/search/page.tsx index a1ead0a..34f8af6 100644 --- a/app/search/page.tsx +++ b/app/search/page.tsx @@ -1685,6 +1685,7 @@ export default function Home() { }); setAttachments([]); setUploadingAttachments([]); + setSuggestedQuestions([]); if (fileInputRef.current) { fileInputRef.current.value = ''; }