fix: blog detail unused variable

This commit is contained in:
RizqiSyahrendra 2025-04-21 13:09:38 +07:00
parent 6c002f6b58
commit 9f7360dbd0

View File

@ -7,9 +7,6 @@ import { headers } from "next/headers";
import Image from "next/image"; import Image from "next/image";
import { notFound } from "next/navigation"; import { notFound } from "next/navigation";
const metaDesc =
"Explore the latest insights, news, and resources on the Dynamic Realty blog. Read our articles today.";
export async function generateMetadata(props: { params: Promise<{ slug: string }> }): Promise<Metadata> { export async function generateMetadata(props: { params: Promise<{ slug: string }> }): Promise<Metadata> {
const metadata = await getDefaultMetadata(); const metadata = await getDefaultMetadata();
const params = await props.params; const params = await props.params;