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

This commit is contained in:
Adam
2026-01-06 08:18:17 -06:00
parent 3f463bc916
commit b88bcd49fd
9 changed files with 150 additions and 83 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>