diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-07-10 19:34:31 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-07-10 20:45:45 +0000 |
| commit | 333d1610fad10e70759545f223959503288a02c6 (patch) | |
| tree | 3354a21d4fa3b4dc75d03ba5f940bd3c213078fd /apps/web/app/admin/layout.tsx | |
| parent | 93049e864ae6d281b60c23dee868bca3f585dd4a (diff) | |
| download | karakeep-333d1610fad10e70759545f223959503288a02c6.tar.zst | |
feat: Add invite user support
Diffstat (limited to 'apps/web/app/admin/layout.tsx')
| -rw-r--r-- | apps/web/app/admin/layout.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/web/app/admin/layout.tsx b/apps/web/app/admin/layout.tsx index 20bd38bb..62a6932a 100644 --- a/apps/web/app/admin/layout.tsx +++ b/apps/web/app/admin/layout.tsx @@ -1,5 +1,4 @@ import { redirect } from "next/navigation"; -import { AdminCard } from "@/components/admin/AdminCard"; import { AdminNotices } from "@/components/admin/AdminNotices"; import MobileSidebar from "@/components/shared/sidebar/MobileSidebar"; import Sidebar from "@/components/shared/sidebar/Sidebar"; @@ -54,7 +53,7 @@ export default async function AdminLayout({ > <div className="flex flex-col gap-1"> <AdminNotices /> - <AdminCard>{children}</AdminCard> + {children} </div> </SidebarLayout> ); |
