fix(app): code splitting for web load perf gains

This commit is contained in:
Adam 2026-01-06 08:18:17 -06:00
commit b88bcd49fd
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
9 changed files with 151 additions and 84 deletions

View file

@ -244,8 +244,13 @@ export function SessionHeader() {
}
return shareURL
},
{ initialValue: "" },
)
return (
<Show when={url.latest}>
{(shareUrl) => <TextField value={shareUrl()} readOnly copyable class="w-72" />}
</Show>
)
return <Show when={url()}>{(url) => <TextField value={url()} readOnly copyable class="w-72" />}</Show>
})}
</Popover>
</Show>