From ce58e6f4c168563cf648b1bf7978f088cd359350 Mon Sep 17 00:00:00 2001 From: lendry Date: Thu, 25 Jun 2026 15:29:52 +0300 Subject: [PATCH] =?UTF-8?q?rename=20sidebar=20(=D0=90=D0=B4=D0=BC=D0=B8?= =?UTF-8?q?=D0=BD=D0=B5=D1=81=D1=82=D1=80=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5)(=D0=90=D0=B4=D0=BC=D0=B8=D0=BD=D0=BA=D0=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/frontend/components/id/sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/components/id/sidebar.tsx b/apps/frontend/components/id/sidebar.tsx index d1e2244..05949ac 100644 --- a/apps/frontend/components/id/sidebar.tsx +++ b/apps/frontend/components/id/sidebar.tsx @@ -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 (