Skip to content

Commit 546ef66

Browse files
committed
docs: fix broken build
1 parent 3b2ed3a commit 546ef66

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

apps/public/content/guides/kotlin-analytics.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ difficulty: intermediate
66
timeToComplete: 10
77
date: 2025-12-15
88
lastUpdated: 2025-12-15
9+
team: OpenPanel Team
910
steps:
1011
- name: "Add the dependency"
1112
anchor: "install"

apps/public/content/guides/python-analytics.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ difficulty: beginner
66
timeToComplete: 7
77
date: 2025-12-15
88
lastUpdated: 2025-12-15
9+
team: OpenPanel Team
910
steps:
1011
- name: "Install the SDK"
1112
anchor: "install"

apps/public/src/app/(content)/guides/[guideSlug]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export default async function Page({
121121
/>
122122
<div className="row gap-4 items-center mt-8">
123123
<div className="size-10 center-center bg-black rounded-full">
124-
{author.image ? (
124+
{author?.image ? (
125125
<Image
126126
className="size-10 object-cover rounded-full"
127127
src={author.image}
@@ -134,7 +134,7 @@ export default async function Page({
134134
)}
135135
</div>
136136
<div className="col flex-1">
137-
<p className="font-medium">{author.name}</p>
137+
<p className="font-medium">{author?.name || 'OpenPanel Team'}</p>
138138
<div className="row gap-4 items-center">
139139
<p className="text-muted-foreground text-sm">
140140
{guide?.data.date.toLocaleDateString()}

0 commit comments

Comments
 (0)