Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Oct 28, 2023
1 parent c52a124 commit c10a193
Show file tree
Hide file tree
Showing 2 changed files with 223 additions and 109 deletions.
4 changes: 2 additions & 2 deletions app/api/search/route.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { structure } from 'next-docs-zeta/mdx-plugins'
import { structure } from "next-docs-zeta/mdx-plugins";
import { allBlogs } from "contentlayer/generated";
import { createSearchAPI } from "next-docs-zeta/search/server";

Expand All @@ -8,6 +8,6 @@ export const { GET } = createSearchAPI("advanced", {
title: blog.title,
content: blog.body.raw,
url: `/blog/${blog.slug}`,
structuredData: structure(blog.body.raw)
structuredData: structure(blog.body.raw),
})),
});
Loading

0 comments on commit c10a193

Please sign in to comment.