This commit is contained in:
yaschalew
2026-07-14 11:02:41 +03:00
parent 22cf8eabd1
commit 790d3a6286
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ const links = [
{ {
title: "User management", title: "User management",
description: "Employees, roles, and permissions", description: "Employees, roles, and permissions",
href: "/dashboard/user-management", href: "/user-management",
icon: Users, icon: Users,
}, },
]; ];

View File

@@ -30,7 +30,7 @@ export const AppLayout = () => {
<div className="w-full h-dvh overflow-y-auto flex flex-col bg-background text-foreground"> <div className="w-full h-dvh overflow-y-auto flex flex-col bg-background text-foreground">
<Top onToggleSidebar={toggleSidebar} showRecordManagementShortcut={!isSuperAdmin} /> <Top onToggleSidebar={toggleSidebar} showRecordManagementShortcut={!isSuperAdmin} />
<AppMenuTabs /> <AppMenuTabs />
<div className="px-2 pb-2 pt-8 sm:px-4 sm:pb-4 sm:pt-10 flex-1"> <div className="px-2 pb-2 pt-8 mt-8 sm:px-4 sm:pb-4 sm:pt-10 flex-1">
<div className="w-full overflow-x-auto"> <div className="w-full overflow-x-auto">
<Outlet /> <Outlet />
</div> </div>