diff options
| author | Dax Raad <[email protected]> | 2025-08-28 17:35:54 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-08-28 17:35:54 -0400 |
| commit | 7d1eb010c1fdeaef400d1b45c3a996bdb9c64f27 (patch) | |
| tree | 24adbd57f6fca9685d8cbb0ada8322379f71302b /cloud | |
| parent | 3fa02623c3a4cd9bc80cd42f6a18164350547581 (diff) | |
| download | opencode-7d1eb010c1fdeaef400d1b45c3a996bdb9c64f27.tar.gz opencode-7d1eb010c1fdeaef400d1b45c3a996bdb9c64f27.zip | |
ignore: cloud
Diffstat (limited to 'cloud')
| -rw-r--r-- | cloud/app/src/app.tsx | 4 | ||||
| -rw-r--r-- | cloud/core/src/drizzle/index.ts | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/cloud/app/src/app.tsx b/cloud/app/src/app.tsx index f86960dc0..54bb6f4a3 100644 --- a/cloud/app/src/app.tsx +++ b/cloud/app/src/app.tsx @@ -12,9 +12,7 @@ export default function App() { <MetaProvider> <Title>opencode</Title> <Meta name="description" content="opencode - The AI coding agent built for the terminal." /> - <ErrorBoundary fallback={<div>Something went wrong</div>}> - <Suspense>{props.children}</Suspense> - </ErrorBoundary> + <Suspense>{props.children}</Suspense> </MetaProvider> )} > diff --git a/cloud/core/src/drizzle/index.ts b/cloud/core/src/drizzle/index.ts index bbf3f4cd7..f35ce0a34 100644 --- a/cloud/core/src/drizzle/index.ts +++ b/cloud/core/src/drizzle/index.ts @@ -20,7 +20,7 @@ const init = () => { return drizzle(client, {}) } -const createClient = "NODE_ENV" in process.env ? init : memo(init) +const createClient = "NODE_ENV" in process.env ? memo(init) : init import { PgTransaction, type PgTransactionConfig } from "drizzle-orm/pg-core" import type { ExtractTablesWithRelations } from "drizzle-orm" |
