From 2f848de25b36d975b27ecd8c891c9e12a75216ff Mon Sep 17 00:00:00 2001 From: zaidmukaddam Date: Wed, 18 Sep 2024 20:58:40 +0530 Subject: [PATCH] Update toast message to include remaining requests for the next 4 hours --- app/search/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/search/page.tsx b/app/search/page.tsx index 81c1932..bd6d2c6 100644 --- a/app/search/page.tsx +++ b/app/search/page.tsx @@ -219,7 +219,7 @@ const HomeContent = () => { setRemainingRequests(remaining); setResetTime(reset); if (remaining !== null && remaining <= 3) { - toast.warning(`You have ${remaining} requests remaining today.`); + toast.warning(`You have ${remaining} requests remaining for the next 4 hours.`); } } catch (error) { console.error("Error in O1 conversation:", error);