fix(site): revert FrameworkCase conditional rendering (#1317)

This commit is contained in:
Darius Cepulis
2026-04-13 09:39:28 -05:00
committed by GitHub
parent d67a3699e4
commit 7e94bad1a7
+22 -2
View File
@@ -11,7 +11,27 @@ const { framework } = Astro.params;
// Only render if current framework matches, or if no frameworks specified (all frameworks)
const shouldRender = !frameworks || frameworks.includes(framework as SupportedFramework);
const html = shouldRender ? await Astro.slots.render('default') : '';
---
{shouldRender && <Fragment set:html={html} />}
{
/*
What I WANT to do is
```
{shouldRender && <slot />}
```
But I'm running into some crazy problems with hydration.
Putting client:* in one of these conditionals causes Astro to just give up hydrating the whole app for some reason.
TODO: fix this
So, while I debug those... let's do this
*/
}
<div
class="contents"
hidden={!shouldRender}
data-search-ignore={shouldRender ? undefined : "all"}
data-llms-ignore={shouldRender ? undefined : "all"}
>
<slot />
</div>