Skip to content

Commit 0a2527c

Browse files
chore: fix link issue
1 parent 774efca commit 0a2527c

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/(landing)/blog/[slug]

1 file changed

+1
-1
lines changed

apps/sim/app/(landing)/blog/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default async function Page({ params }: { params: Promise<{ slug: string
4040
const category = getPrimaryCategory(post.tags)
4141
const categoryColor = category.color
4242
const displayAuthors = post.authors && post.authors.length > 0 ? post.authors : [post.author]
43-
const shareUrl = `${getBaseUrl()}/studio/${slug}`
43+
const shareUrl = `${getBaseUrl()}/blog/${slug}`
4444

4545
return (
4646
<article className='w-full' itemScope itemType='https://schema.org/BlogPosting'>

0 commit comments

Comments
 (0)