rename sidebar (Админестрирование)(Админка)

This commit is contained in:
lendry
2026-06-25 15:29:52 +03:00
parent f2108c7bdd
commit ce58e6f4c1

View File

@@ -18,7 +18,7 @@ const baseItems = [
export function Sidebar({ active }: { active: string }) {
const { logout, user } = useAuth();
const items = user?.canAccessAdmin
? [...baseItems, { href: getAdminLandingPath(user), label: 'Админестрирование', icon: ShieldCheck }]
? [...baseItems, { href: getAdminLandingPath(user), label: 'Админка', icon: ShieldCheck }]
: baseItems;
return (