sync hidden sidebar layout with mobile

This commit is contained in:
Shantur Rathore
2025-12-06 22:34:30 +00:00
parent b0650a283e
commit 3373e23a41
5 changed files with 46 additions and 5 deletions

View File

@@ -24,6 +24,7 @@ interface SessionViewProps {
escapeInDebounce: boolean
showSidebarToggle?: boolean
onSidebarToggle?: () => void
forceCompactStatusLayout?: boolean
}
export const SessionView: Component<SessionViewProps> = (props) => {
@@ -157,6 +158,7 @@ export const SessionView: Component<SessionViewProps> = (props) => {
}}
showSidebarToggle={props.showSidebarToggle}
onSidebarToggle={props.onSidebarToggle}
forceCompactStatusLayout={props.forceCompactStatusLayout}
/>