Parcourir la source

chore: generate

opencode-agent[bot] il y a 4 mois
Parent
commit
8b56d77ea1
1 fichiers modifiés avec 5 ajouts et 3 suppressions
  1. 5 3
      packages/opencode/src/session/session.ts

+ 5 - 3
packages/opencode/src/session/session.ts

@@ -779,9 +779,11 @@ export const defaultLayer = layer.pipe(
   Layer.provide(SyncEvent.defaultLayer),
 )
 
-function* listByProject(input: ListInput & {
-  projectID: ProjectID
-}) {
+function* listByProject(
+  input: ListInput & {
+    projectID: ProjectID
+  },
+) {
   const conditions = [eq(SessionTable.project_id, input.projectID)]
 
   if (input.workspaceID) {