feat: add real account workspace controls

This commit is contained in:
2026-07-02 19:52:29 -07:00
parent 1b8fae0116
commit 1cdf89c608
12 changed files with 759 additions and 203 deletions

View File

@@ -26,7 +26,12 @@ export default async function AppLayout({ children }: AppLayoutProps): Promise<R
}
return (
<AppShell account={context.account} permissions={context.permissions}>
<AppShell
account={context.account}
organization={context.organization}
organizations={context.organizations}
permissions={context.permissions}
>
{children}
</AppShell>
);