"use client"; import { useAtomValue } from "jotai"; import AdvancedPrompt from "../AdvancedPrompt"; import CompactSideBar from "../CompactSideBar"; import LeftSidebar from "../LeftSidebar"; import { showingAdvancedPromptAtom } from "@/_helpers/JotaiWrapper"; const LeftContainer: React.FC = () => { const isShowingAdvPrompt = useAtomValue(showingAdvancedPromptAtom); if (isShowingAdvPrompt) { return (