From 7269c4e5825284393df627bbe205c73d979a9a8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aneta=20Jastrz=C4=99bska?= <1544710+anetaj@users.noreply.github.com> Date: Sat, 21 Sep 2024 21:19:36 +0200 Subject: [PATCH] show new thread button --- extensions/void/src/sidebar/Sidebar.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/void/src/sidebar/Sidebar.tsx b/extensions/void/src/sidebar/Sidebar.tsx index 0f7de288..df543a0c 100644 --- a/extensions/void/src/sidebar/Sidebar.tsx +++ b/extensions/void/src/sidebar/Sidebar.tsx @@ -100,7 +100,7 @@ const Sidebar = () => { // state of chat const [messageStream, setMessageStream] = useState('') const [isLoading, setIsLoading] = useState(false) - const [showChatHistory, setShowChatHistory] = useState(false) + const [showThreadsHistory, setShowThreadsHistory] = useState(false) const abortFnRef = useRef<(() => void) | null>(null) @@ -212,14 +212,14 @@ const Sidebar = () => {