diff --git a/app/w/components/console/console.tsx b/app/w/components/console/console.tsx index 8565918cb..fd4497bcc 100644 --- a/app/w/components/console/console.tsx +++ b/app/w/components/console/console.tsx @@ -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)