Console should be collapsed by default

This commit is contained in:
Emir Karabeg
2025-01-31 17:02:15 -08:00
parent d31cc9ccc7
commit e4a6c8b1a5

View File

@@ -14,7 +14,7 @@ import { useWorkflowRegistry } from '@/stores/workflow/registry'
import { ConsoleEntry } from './components/console-entry/console-entry'
export function Console() {
const [isCollapsed, setIsCollapsed] = useState(false)
const [isCollapsed, setIsCollapsed] = useState(true)
const [width, setWidth] = useState(336) // 84 * 4 = 336px (default width)
const [isDragging, setIsDragging] = useState(false)
const entries = useConsoleStore((state) => state.entries)