From 03331c44276ec56e9f235e4d5ee75030455a753f Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 19 Sep 2023 15:47:08 +0200 Subject: build(deps): bump all dependencies * MDX type has changed so some components props had to be updated * Since Storybook now supports TS, I renamed the main/preview files --- src/pages/projets/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pages/projets/index.tsx') diff --git a/src/pages/projets/index.tsx b/src/pages/projets/index.tsx index 2068b30..22a5346 100644 --- a/src/pages/projets/index.tsx +++ b/src/pages/projets/index.tsx @@ -1,4 +1,4 @@ -import { NestedMDXComponents } from 'mdx/types'; +import { MDXComponents } from 'mdx/types'; import { GetStaticProps } from 'next'; import Head from 'next/head'; import { useRouter } from 'next/router'; @@ -52,7 +52,7 @@ const ProjectsPage: NextPageWithLayout = ({ projects }) => { } ); - const components: NestedMDXComponents = { + const components: MDXComponents = { Link, }; -- cgit v1.2.3