Skip to content

Commit 41a820a

Browse files
fix(cli): remove db package from web
1 parent 7551e5e commit 41a820a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

apps/cli/src/helpers/core/workspace-setup.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ export async function setupWorkspaceDependencies(
7070

7171
webDeps[`@${projectName}/api`] = workspaceVersion;
7272
webDeps[`@${projectName}/auth`] = workspaceVersion;
73-
webDeps[`@${projectName}/db`] = workspaceVersion;
7473

7574
if (Object.keys(webDeps).length > 0) {
7675
await addPackageDependency({

apps/web/src/app/docs/[[...slug]]/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ export default async function Page(props: {
2020
const MDX = page.data.body;
2121

2222
return (
23-
<DocsPage toc={page.data.toc} tableOfContent={{style: "clerk"}} full={page.data.full}>
23+
<DocsPage
24+
toc={page.data.toc}
25+
tableOfContent={{ style: "clerk" }}
26+
full={page.data.full}
27+
>
2428
<DocsTitle>{page.data.title}</DocsTitle>
2529
<DocsDescription>{page.data.description}</DocsDescription>
2630
<div className="flex flex-row items-center gap-2 border-b pt-2 pb-6">

0 commit comments

Comments
 (0)