Skip to content
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.

Commit

Permalink
refactor: Format unformatted file
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsanzizan authored Aug 24, 2024
1 parent 3d3ede1 commit bd58eda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/components/parts/Blogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import { SectionContainer } from "../global/ui/container";
import { H1, P } from "../global/ui/text";

export default async function Blogs() {
const blogs = await getBlogs({ where: { NOT: { link: { contains: "private" } } }, take: 3, orderBy: { createdAt: "desc" } });
const blogs = await getBlogs({
where: { NOT: { link: { contains: "private" } } },
take: 3,
orderBy: { createdAt: "desc" },
});

return (
<SectionContainer id="blogs">
Expand Down

0 comments on commit bd58eda

Please sign in to comment.