fix(app): default project picker to home

This commit is contained in:
Brendan Allan 2026-07-31 04:07:43 +00:00 committed by opencode-agent[bot]
commit 7865d69001
10 changed files with 31 additions and 8 deletions

View file

@ -61,7 +61,7 @@ export interface ServerApi<E = never> {
export type Endpoint2_0Input = {
readonly location?: { readonly directory?: string | undefined; readonly workspace?: string | undefined } | undefined
}
export type Endpoint2_0Output = Location.Info
export type Endpoint2_0Output = Location.Details
export type LocationGetOperation<E = never> = (input?: Endpoint2_0Input) => Effect.Effect<Endpoint2_0Output, E>
export interface LocationApi<E = never> {

View file

@ -2519,6 +2519,7 @@ export type LocationGetOutput = {
directory: string
workspaceID?: string
project: { id: string; directory: string; canonical: string }
home: string
}
export type AgentListInput = {