diff --git a/apps/www/components/blog/table-of-contents.tsx b/apps/www/components/blog/table-of-contents.tsx
index 557b1e62d..6a65bca64 100644
--- a/apps/www/components/blog/table-of-contents.tsx
+++ b/apps/www/components/blog/table-of-contents.tsx
@@ -16,10 +16,10 @@ const generateHeadingId = (text: string) => {
.trim()
}
-export function BlogTableOfContents({
+export function BlogTableOfContents({
className,
onLinkClick,
-}: {
+}: {
className?: string
onLinkClick?: () => void
}) {
diff --git a/apps/www/content/blog/typescript-vs-javascript-differences.mdx b/apps/www/content/blog/typescript-vs-javascript-differences.mdx
index 04ecda5d5..86d260d31 100644
--- a/apps/www/content/blog/typescript-vs-javascript-differences.mdx
+++ b/apps/www/content/blog/typescript-vs-javascript-differences.mdx
@@ -39,7 +39,7 @@ This comparison isn't about crowning a winner. It’s about helping you make the
-
+
-
+
Project Scope
@@ -73,7 +73,7 @@ This comparison isn't about crowning a winner. It’s about helping you make the
maintainability.
-
+
Error Detection
@@ -84,7 +84,7 @@ This comparison isn't about crowning a winner. It’s about helping you make the
Catches type-related errors during compilation, before code is run.