Skip to content

Commit d948934

Browse files
authored
Format with prettier
1 parent e35b762 commit d948934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/blog/[...slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export async function generateMetadata({
7575
}
7676

7777
export const generateStaticParams = async () => {
78-
return allBlogs.map((p) => ({ slug: p.slug.split("/").map(name => decodeURI(name)) }));
78+
return allBlogs.map((p) => ({ slug: p.slug.split('/').map((name) => decodeURI(name)) }))
7979
}
8080

8181
export default async function Page({ params }: { params: { slug: string[] } }) {

0 commit comments

Comments
 (0)