File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
web/src/app/docs/[[...slug]] Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ export async function setupWorkspaceDependencies(
70
70
71
71
webDeps [ `@${ projectName } /api` ] = workspaceVersion ;
72
72
webDeps [ `@${ projectName } /auth` ] = workspaceVersion ;
73
- webDeps [ `@${ projectName } /db` ] = workspaceVersion ;
74
73
75
74
if ( Object . keys ( webDeps ) . length > 0 ) {
76
75
await addPackageDependency ( {
Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ export default async function Page(props: {
20
20
const MDX = page . data . body ;
21
21
22
22
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
+ >
24
28
< DocsTitle > { page . data . title } </ DocsTitle >
25
29
< DocsDescription > { page . data . description } </ DocsDescription >
26
30
< div className = "flex flex-row items-center gap-2 border-b pt-2 pb-6" >
You can’t perform that action at this time.
0 commit comments