Skip to content

Commit 71cd599

Browse files
committed
fix(app): session shouldn't be keyed
1 parent 14db336 commit 71cd599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export function AppInterface(props: { defaultUrl?: string }) {
126126
<Route
127127
path="/session/:id?"
128128
component={(p) => (
129-
<Show when={p.params.id ?? "new"} keyed>
129+
<Show when={p.params.id ?? "new"}>
130130
<TerminalProvider>
131131
<FileProvider>
132132
<PromptProvider>

0 commit comments

Comments
 (0)