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

This commit is contained in:
lendry
2026-06-25 15:26:24 +03:00
parent 1c55c871fc
commit f2108c7bdd

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 (