Browse Source

chore: generate

opencode-agent[bot] 1 month ago
parent
commit
977a40af68
1 changed files with 4 additions and 1 deletions
  1. 4 1
      packages/app/src/context/server.tsx

+ 4 - 1
packages/app/src/context/server.tsx

@@ -312,7 +312,10 @@ export const { use: useServer, provider: ServerProvider } = createSimpleContext(
       })
     }
 
-    const isReady = Object.assign(createMemo(() => ready() && !!state.active), { promise: ready.promise })
+    const isReady = Object.assign(
+      createMemo(() => ready() && !!state.active),
+      { promise: ready.promise },
+    )
 
     const scope = (key = state.active) => ServerScope.fromServerKey(key, props.canonicalLocalServer)
     const projects = createServerProjects({ scope, store, setStore })