Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/opencode/src/cli/cmd/tui/context/sync.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,8 @@ export const { use: useSync, provider: SyncProvider } = createSimpleContext({

async function bootstrap() {
console.log("bootstrapping")
const start = Date.now() - 30 * 24 * 60 * 60 * 1000
const sessionListPromise = sdk.client.session
.list({ start: start })
.list({ roots: true })
.then((x) => (x.data ?? []).toSorted((a, b) => a.id.localeCompare(b.id)))

// blocking - include session.list when continuing a session
Expand Down
Loading