diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx
index 448647ed..829ee5c7 100644
--- a/app/(dashboard)/layout.tsx
+++ b/app/(dashboard)/layout.tsx
@@ -2,6 +2,7 @@ import { createClient } from '@/lib/supabase/server'
import { redirect } from 'next/navigation'
import { headers } from 'next/headers'
import DashboardNav from '@/components/dashboard/DashboardNav'
+import { MainContainer } from '@/components/dashboard/MainContainer'
import CompanyTabSync from '@/components/dashboard/CompanyTabSync'
import { RecaptIdentify } from '@/components/RecaptIdentify'
import { SandboxBanner } from '@/components/dashboard/SandboxBanner'
@@ -222,16 +223,7 @@ export default async function DashboardLayout({
extensionNavItems={getExtensionNavItems()}
/>
- {pathname.startsWith('/e/') ? (
- // Extension workspaces opt out of the centered max-w-5xl chrome
- // because their content (file viewers, dashboards) wants the full
- // viewport width.
- {children}
- ) : (
-
- {children}
-
- )}
+ {children}
{!isSandbox && (
{children}
+ ) : (
+
+ {children}
+
+ )
+}