@@ -88,7 +88,6 @@ const VIEW_ICONS: Record<string, { icon: string; label: string }> = {
8888 preview : { icon : 'lucide:eye' , label : 'Preview' } ,
8989 diff : { icon : 'lucide:git-compare' , label : 'Diff' } ,
9090 git : { icon : 'lucide:git-branch' , label : 'Git' } ,
91- workshop : { icon : 'lucide:bot' , label : 'Workshop' } ,
9291 skills : { icon : 'lucide:sparkles' , label : 'Skills' } ,
9392 settings : { icon : 'lucide:settings' , label : 'Settings' } ,
9493 terminal : { icon : 'lucide:terminal' , label : 'Terminal' } ,
@@ -134,7 +133,7 @@ export default function EditorLayout() {
134133 const terminalStartupCommand = useCenteredTerminal ? 'openclaw tui' : undefined
135134 const mobileViewTabs = useMemo ( ( ) => {
136135 // On mobile, curate tabs to useful views + always include settings
137- const mobile = visibleViews . filter ( ( v ) => ! [ 'preview' , 'diff' , 'workshop' ] . includes ( v ) )
136+ const mobile = visibleViews . filter ( ( v ) => ! [ 'preview' , 'diff' ] . includes ( v ) )
138137 if ( ! mobile . includes ( 'terminal' ) ) mobile . push ( 'terminal' )
139138 return mobile . slice ( 0 , 5 )
140139 } , [ visibleViews ] )
@@ -148,8 +147,7 @@ export default function EditorLayout() {
148147 )
149148 const showMobileBottomTabs = isMobile && ! modeSpec . terminalCenter && keyboardOffset === 0
150149 const showMobileSidebarButton = isMobile && mode !== 'tui'
151- const showWorkflowEditorTabs =
152- ! isMobile && ! modeSpec . terminalCenter && activeView === 'workshop' && files . length > 0
150+ const showWorkflowEditorTabs = false
153151 const mobileTerminalOffset = showMobileBottomTabs
154152 ? 'calc(env(safe-area-inset-bottom) + 5.75rem)'
155153 : 'calc(env(safe-area-inset-bottom) + 0.5rem)'
@@ -1035,9 +1033,6 @@ export default function EditorLayout() {
10351033 case 'view-settings' :
10361034 setView ( 'settings' )
10371035 break
1038- case 'view-workshop' :
1039- setView ( 'workshop' )
1040- break
10411036 case 'view-skills' :
10421037 setView ( 'skills' )
10431038 break
0 commit comments