mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 16:40:48 +00:00
fix(app): session shouldn't be keyed
This commit is contained in:
parent
14db336e3a
commit
71cd59932e
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ export function AppInterface(props: { defaultUrl?: string }) {
|
|||
<Route
|
||||
path="/session/:id?"
|
||||
component={(p) => (
|
||||
<Show when={p.params.id ?? "new"} keyed>
|
||||
<Show when={p.params.id ?? "new"}>
|
||||
<TerminalProvider>
|
||||
<FileProvider>
|
||||
<PromptProvider>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue