diff --git a/site/src/components/docs/FrameworkCase.astro b/site/src/components/docs/FrameworkCase.astro
index 5a01ea2e..f3058d01 100644
--- a/site/src/components/docs/FrameworkCase.astro
+++ b/site/src/components/docs/FrameworkCase.astro
@@ -11,27 +11,7 @@ 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') : '';
---
-{
- /*
- What I WANT to do is
- ```
- {shouldRender &&