diff options
| author | Cas <[email protected]> | 2026-01-14 23:04:03 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-14 09:04:03 -0600 |
| commit | 6e13e2f74e9d27250f9a64247a2b2bf3eec050db (patch) | |
| tree | 3df48f0b37a28a88451f81bc4b4a9b881e90c1c4 /packages | |
| parent | 9fd61aef6e7b904ee8f107e58625c2409dda5537 (diff) | |
| download | opencode-6e13e2f74e9d27250f9a64247a2b2bf3eec050db.tar.gz opencode-6e13e2f74e9d27250f9a64247a2b2bf3eec050db.zip | |
fix(session): remove typo'd duplicate path import (#8408) (#8412)
Co-authored-by: opencode <[email protected]>
Co-authored-by: Adam <[email protected]>
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/session/index.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/opencode/src/session/index.ts b/packages/opencode/src/session/index.ts index c70b74f0f..3fcdab523 100644 --- a/packages/opencode/src/session/index.ts +++ b/packages/opencode/src/session/index.ts @@ -1,5 +1,5 @@ import { Slug } from "@opencode-ai/util/slug" -import pat from "path" +import path from "path" import { BusEvent } from "@/bus/bus-event" import { Bus } from "@/bus" import { Decimal } from "decimal.js" @@ -21,7 +21,6 @@ import { Snapshot } from "@/snapshot" import type { Provider } from "@/provider/provider" import { PermissionNext } from "@/permission/next" -import path from "path" import { Global } from "@/global" export namespace Session { |
