chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-25 20:26:11 +00:00
parent a2b847e29e
commit 21c0e03a70
4 changed files with 35 additions and 45 deletions
@@ -161,8 +161,7 @@ function PromptInputWithOpenDock() {
}
return (
<SessionComposerRegion
controller={
createSessionComposerRegionController({
controller={createSessionComposerRegionController({
state,
sessionKey: () => "story-session",
sessionID: () => "story-session",
@@ -179,8 +178,7 @@ function PromptInputWithOpenDock() {
openParent: () => {},
setPromptRef: () => {},
setDockRef: () => {},
})
}
})}
promptInput={
<PromptInput
controls={inputControls}
+1 -3
View File
@@ -1783,9 +1783,7 @@ export default function Page() {
</Switch>
</div>
<Show when={(params.id || !newSessionDesign()) && !mobileChanges()}>
{(_) => composerRegion()}
</Show>
<Show when={(params.id || !newSessionDesign()) && !mobileChanges()}>{(_) => composerRegion()}</Show>
<Show when={!!params.id && mobileTabsBottom()}>{mobileTabs(true, true)}</Show>
</div>
@@ -135,11 +135,7 @@ export function SessionComposerRegion(props: {
</Show>
<Show
when={controller.child()}
fallback={
<Show when={!controller.state.blocked()}>
{props.promptInput}
</Show>
}
fallback={<Show when={!controller.state.blocked()}>{props.promptInput}</Show>}
>
<div
ref={controller.setPromptRef}
@@ -286,8 +286,7 @@ export const Playground = {
<div>
<SessionComposerRegion
controller={
createSessionComposerRegionController({
controller={createSessionComposerRegionController({
state,
sessionKey: () => "story-session",
sessionID: () => "story-session",
@@ -301,8 +300,7 @@ export const Playground = {
openParent: () => {},
setPromptRef: () => {},
setDockRef: () => {},
})
}
})}
promptInput={
<PromptInput
controls={controls}