Add user feature permissions and unified account management
Magent CI/CD / verify (push) Canceled after 1m19s
Magent CI/CD / deploy-prod (push) Canceled after 0s
Magent CI/CD / deploy-beta (push) Canceled after 0s

This commit is contained in:
2026-09-11 12:31:25 +12:00
parent e2be8b3872
commit ec0a866ef3
32 changed files with 650 additions and 214 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ import './workspace.css'
import './portal/issue-flow.css'
import type { ReactNode } from 'react'
import BrandingFavicon from './ui/BrandingFavicon'
import FeatureGate from './ui/FeatureGate'
import ApplicationChrome from './ui/ApplicationChrome'
export const metadata = {
@@ -20,7 +21,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<BrandingFavicon />
<div className="page">
<ApplicationChrome />
{children}
<FeatureGate>{children}</FeatureGate>
</div>
</body>
</html>