Skip to content

Commit 2450a67

Browse files
committed
chore: remove console logs
1 parent 25540c8 commit 2450a67

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

app/(edit)/docs/[slug]/edit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ export default async function DocEditPage({
1313
if (!page) {
1414
notFound();
1515
}
16-
console.log({slug});
16+
1717
return <DocEditor page={page} />
1818
}

app/docs/[slug]/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export async function generateMetadata(
1313
}
1414
): Promise<Metadata> {
1515
const slug = (await params).slug
16-
17-
console.log({slug});
1816

1917
const page = getDocPageForSlug(slug);
2018

0 commit comments

Comments
 (0)