wip(desktop): progress

This commit is contained in:
Adam 2025-12-09 14:49:00 -06:00
commit b9fa7d9163
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
12 changed files with 57 additions and 39 deletions

View file

@ -1,4 +1,4 @@
import type { Part } from "@opencode-ai/sdk/client"
import type { Part } from "@opencode-ai/sdk/v2/client"
export const sanitize = (text: string | undefined, remove?: RegExp) => (remove ? text?.replace(remove, "") : text) ?? ""