Skip to content

Commit 99bdf41

Browse files
committed
feat: fixed ts error on pageSEOLayout and Layout
1 parent 0b2f03f commit 99bdf41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function Layout({ children, title, description }: Props) {
2121
url: `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/landing-page-screenshot.png`,
2222
site_name: `Developer DAO Academy`,
2323
title: `Developer DAO Academy | ${title}`,
24-
description: `${description}`,
24+
description: description,
2525
images: [
2626
{
2727
url: `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/landing-page-screenshot.png`,

src/components/PageSeoLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const PageSeoLayout = ({
2222
url: `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/landing-page-screenshot.png`,
2323
site_name: `Developer DAO Academy`,
2424
title: `Developer DAO Academy | ${title}`,
25-
description: `${description}`,
25+
description: description,
2626
images: [
2727
{
2828
url: `https://${process.env.NEXT_PUBLIC_VERCEL_URL}/landing-page-screenshot.png`,

0 commit comments

Comments
 (0)