diff options
| author | Adam <[email protected]> | 2026-01-01 20:15:37 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2026-01-01 21:03:07 -0600 |
| commit | 0f34634c52a7869679bbcdcdb163baa1bb21a71c (patch) | |
| tree | f8c60b3c7bde7f13620e8719217b37ee4309f8b8 | |
| parent | a5a569f892e9859e2cb026b82d288a9ed4c2f919 (diff) | |
| download | opencode-0f34634c52a7869679bbcdcdb163baa1bb21a71c.tar.gz opencode-0f34634c52a7869679bbcdcdb163baa1bb21a71c.zip | |
chore: cleanup
| -rw-r--r-- | packages/app/src/pages/session.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/app/src/pages/session.tsx b/packages/app/src/pages/session.tsx index 23e9a273f..081dc1c46 100644 --- a/packages/app/src/pages/session.tsx +++ b/packages/app/src/pages/session.tsx @@ -904,9 +904,9 @@ export default function Page() { style={{ width: isDesktop() && showTabs() ? `${layout.session.width()}px` : "100%" }} > <div class="flex-1 min-h-0 overflow-hidden"> - <Show when={activeMessage()}> - <Switch> - <Match when={params.id}> + <Switch> + <Match when={params.id}> + <Show when={activeMessage()}> <Show when={!mobileReview()} fallback={ @@ -989,12 +989,12 @@ export default function Page() { </div> </div> </Show> - </Match> - <Match when={true}> - <NewSessionView /> - </Match> - </Switch> - </Show> + </Show> + </Match> + <Match when={true}> + <NewSessionView /> + </Match> + </Switch> </div> {/* Prompt input */} |
