Skip to content

Commit

Permalink
Fix TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
kilemensi committed Sep 9, 2024
1 parent da93af7 commit e734c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/engineeringblog/app/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import { ArticleProps, getContent } from "@/engineeringblog/utils";
export default async function Page({ params }: { params: { slug: string } }) {
const post: ArticleProps = await getContent(params.slug);

// (TODO): Check that the post does exist, return 404 otherwise
// TODO: Check that the post does exist, return 404 otherwise
return <Article {...post} />;
}

0 comments on commit e734c24

Please sign in to comment.