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 = () => {
- + {!!chatMessageHistory.length && } {!!previousThreads.length && ( - )}
- {showChatHistory && } + {showThreadsHistory && }
{/* previous messages */}