show not found error on missing slugs

This commit is contained in:
2024-05-23 02:56:23 +02:00
parent ef8b7d05c8
commit 5041cd0bde
4 changed files with 31 additions and 12 deletions

View File

@ -1,9 +1,10 @@
import { graphql } from "@/gql";
import { NewsFragment } from "@/gql/graphql";
import { getClient } from "@/app/client";
import { Blocks } from "@/components/blocks/Blocks";
import Image from "@/components/general/Image";
import { formatDate, commonDateFormat } from "@/lib/date";
import { graphql } from "@/gql";
import { NewsFragment } from "@/gql/graphql";
import { commonDateFormat, formatDate } from "@/lib/date";
import { notFound } from "next/navigation";
export async function generateStaticParams() {
const allNewsSlugsQuery = graphql(`
@ -40,6 +41,10 @@ export default async function Page({ params }: { params: { slug: string } }) {
slug: params.slug,
});
if (data?.news === null || error) {
return notFound();
}
const news = (data?.news ?? {}) as NewsFragment;
const featuredImage: any = news.featuredImage;