Revert "fix(app): stale keyed show errors"

This reverts commit 7665b8e30d.
This commit is contained in:
Adam
2026-03-05 20:04:39 -06:00
parent e1cf761d29
commit 2094e8b255
3 changed files with 12 additions and 14 deletions

View File

@@ -331,9 +331,7 @@ export function SessionSidePanel(props: {
const path = createMemo(() => file.pathFromTab(tab))
return (
<div data-component="tabs-drag-preview">
<Show when={path()} keyed>
{(p) => <FileVisual active path={p} />}
</Show>
<Show when={path()}>{(p) => <FileVisual active path={p()} />}</Show>
</div>
)
}}