Skip to content

Commit 39c0c97

Browse files
committed
hide skills tab on mobile
1 parent ab9fa6e commit 39c0c97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default function EditorLayout() {
133133
const terminalStartupCommand = useCenteredTerminal ? 'openclaw tui' : undefined
134134
const mobileViewTabs = useMemo(() => {
135135
// On mobile, curate tabs to useful views + always include settings
136-
const mobile = visibleViews.filter((v) => !['preview', 'diff'].includes(v))
136+
const mobile = visibleViews.filter((v) => !['preview', 'diff', 'skills'].includes(v))
137137
if (!mobile.includes('terminal')) mobile.push('terminal')
138138
return mobile.slice(0, 5)
139139
}, [visibleViews])

0 commit comments

Comments
 (0)