From cf549051a9a7ec8de159898af7b959a4dac16365 Mon Sep 17 00:00:00 2001 From: Karl Cardenas Date: Fri, 20 Oct 2023 07:34:58 -0700 Subject: [PATCH] chore: added toc to the global scope (#1685) (cherry picked from commit 3c640a34394d283d6c9686c8919bd67feac87e43) --- src/theme/MDXComponents/MDXComponents.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/theme/MDXComponents/MDXComponents.ts b/src/theme/MDXComponents/MDXComponents.ts index 71658898c7..ff87200699 100644 --- a/src/theme/MDXComponents/MDXComponents.ts +++ b/src/theme/MDXComponents/MDXComponents.ts @@ -8,6 +8,7 @@ import YouTube from "@site/src/components/Youtube/Youtube"; import Packs from "@site/src/components/Integrations/Packs/Packs"; import AppTiers from "@site/src/components/Integrations/AppTiers/AppTiers"; import PacksTable from "@site/src/components/PacksTable/PacksTable"; +import TOCInline from "@theme/TOCInline"; export default { ...MDXComponents, @@ -20,4 +21,5 @@ export default { Packs, AppTiers, PacksTable, + TOCInline, };