fix: build error

This commit is contained in:
Adam
2025-11-25 16:27:53 -06:00
parent 929db79a3f
commit 665e8251f5
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -13,7 +13,6 @@
"zod": "catalog:"
},
"devDependencies": {
"typescript": "catalog:",
"@types/node": "catalog:"
"typescript": "catalog:"
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
import { Part } from "@opencode-ai/sdk"
import type { Part } from "@opencode-ai/sdk/client"
export const sanitize = (text: string | undefined, remove?: RegExp) => (remove ? text?.replace(remove, "") : text) ?? ""