From d375e5c9f162cbd84a6e6462977db56519d09f75 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 7 Dec 2023 18:48:53 +0100 Subject: refactor(pages): refine Project pages * refactor ProjectOverview component to let consumers handle the value * extract project overview depending on Github to avoid fetching Github API if the project is not on Github * wrap dynamic import in a useMemo hook to avoid infinite rerender * fix table of contents by adding a useMutationObserver hook to refresh headings tree (without it useHeadingsTree is not retriggered once the dynamic import is done) * add Cypress tests --- src/pages/cv.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pages/cv.tsx') diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx index edff59f..b77aa8c 100644 --- a/src/pages/cv.tsx +++ b/src/pages/cv.tsx @@ -42,7 +42,7 @@ const DownloadLink = (chunks: ReactNode) => ( */ const CVPage: NextPageWithLayout = () => { const intl = useIntl(); - const { ref, tree } = useHeadingsTree({ fromLevel: 2 }); + const { ref, tree } = useHeadingsTree({ fromLevel: 2 }); const { dates, intro, seo, title } = meta; const { items: breadcrumbItems, schema: breadcrumbSchema } = useBreadcrumb({ title, -- cgit v1.2.3