From 3c4f6ae1a3451490cabd4cf1c13486b2b8366684 Mon Sep 17 00:00:00 2001 From: "Syed M. Sawaid" <34231494+SyedMSawaid@users.noreply.github.com> Date: Wed, 23 Oct 2024 20:34:41 +0200 Subject: [PATCH] removed setChat --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index e32eb08..61659b6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,7 +3,7 @@ import { ChatOptions } from "./components"; import { ChatPage } from "./pages"; function App() { - const [chat, setChat] = useState(true); + const [chat] = useState(true); return ( <>
Mukalma