Skip to content

Commit 2e6e7d1

Browse files
committed
fix: remove width prop from Sidebar (fork doesn't have it)
1 parent be699df commit 2e6e7d1

File tree

1 file changed

+2
-2
lines changed
  • packages/opencode/src/cli/cmd/tui/routes/session

1 file changed

+2
-2
lines changed

packages/opencode/src/cli/cmd/tui/routes/session/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ export function Session() {
11071107
<Show when={sidebarVisible()}>
11081108
<Switch>
11091109
<Match when={wide()}>
1110-
<Sidebar sessionID={route.sessionID} width={42} />
1110+
<Sidebar sessionID={route.sessionID} />
11111111
</Match>
11121112
<Match when={!wide()}>
11131113
<box
@@ -1119,7 +1119,7 @@ export function Session() {
11191119
alignItems="flex-end"
11201120
backgroundColor={RGBA.fromInts(0, 0, 0, 70)}
11211121
>
1122-
<Sidebar sessionID={route.sessionID} width={42} overlay />
1122+
<Sidebar sessionID={route.sessionID} overlay />
11231123
</box>
11241124
</Match>
11251125
</Switch>

0 commit comments

Comments
 (0)