We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d8178 commit 4e9179fCopy full SHA for 4e9179f
beta/src/components/Layout/MarkdownPage.tsx
@@ -129,6 +129,7 @@ export function MarkdownPage<
129
<div className="px-5 sm:px-12">
130
<React.Suspense
131
fallback={<div className="h-screen" />}
132
+ // @ts-ignore
133
unstable_avoidThisFallback={true}>
134
<div className="max-w-7xl mx-auto">
135
<MDXContext.Provider value={MDXComponents}>
beta/src/components/Layout/Sidebar/Sidebar.tsx
@@ -32,6 +32,7 @@ export function Sidebar({isMobileOnly}: {isMobileOnly?: boolean}) {
32
isOpen ? 'block z-40' : 'hidden lg:block'
33
)}
34
aria-hidden={isHidden}>
35
+ {/* @ts-ignore */}
36
<React.Suspense unstable_avoidThisFallback={true} fallback={null}>
37
<div className="px-5">
38
<Search />
0 commit comments