diff options
Diffstat (limited to 'packages/util/src')
| -rw-r--r-- | packages/util/src/sanitize.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/util/src/sanitize.ts b/packages/util/src/sanitize.ts index 892fe87cf..270b618ae 100644 --- a/packages/util/src/sanitize.ts +++ b/packages/util/src/sanitize.ts @@ -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) ?? "" |
