From f219ab83f8220d0d8e49469750ccf52bb4d5a9a0 Mon Sep 17 00:00:00 2001 From: Jacob Marshall Date: Wed, 29 Jan 2025 22:47:08 +0000 Subject: [PATCH] lint --- .../src/components/MdxProvider/MdxTitle/MdxTitle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documentation/src/components/MdxProvider/MdxTitle/MdxTitle.tsx b/apps/documentation/src/components/MdxProvider/MdxTitle/MdxTitle.tsx index dba88ed5..7a88a7ab 100644 --- a/apps/documentation/src/components/MdxProvider/MdxTitle/MdxTitle.tsx +++ b/apps/documentation/src/components/MdxProvider/MdxTitle/MdxTitle.tsx @@ -29,7 +29,7 @@ function getIdFrom(children: ReactNode): string { ? children.map(getTextContent).join('') : getTextContent(children) - return textContent + return textContent .normalize('NFKD') // separate accented characters into their base form and diacritical marks .replace(/[\u0300-\u036f]/g, '') // remove all the accents .trim()