quick fix
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Failing after 6s

Took 42 seconds
This commit is contained in:
Braydon 2024-10-06 17:47:19 -04:00
parent 7e6ca0d27f
commit dd0e020165

View File

@ -28,7 +28,7 @@ const DocsPage = async ({
// Get the content to display based on the provided slug
const content: DocsContentMetadata | undefined = getDocsContent().find(
(metadata: DocsContentMetadata): boolean =>
metadata.slug === (slug || "home")
metadata.slug === (slug || "intro")
);
if (!content) {
notFound();