From dc0d1a8e6314c91c665014e062b4a4df9909fdd1 Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 11 Feb 2026 11:17:16 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20AppLayout.tsx=20=EB=A8=B8=EC=A7=80=20?= =?UTF-8?q?=EC=B6=A9=EB=8F=8C=20=ED=95=B4=EA=B2=B0=20=EB=B0=8F=20i18n=20?= =?UTF-8?q?=ED=82=A4=20=EC=B6=94=EA=B0=80=20#239?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/layout/AppLayout.tsx | 29 ++----------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/adminfront/src/components/layout/AppLayout.tsx b/adminfront/src/components/layout/AppLayout.tsx index 22dc3735..5dbf388a 100644 --- a/adminfront/src/components/layout/AppLayout.tsx +++ b/adminfront/src/components/layout/AppLayout.tsx @@ -1,28 +1,15 @@ import { -<<<<<<< HEAD BadgeCheck, Building2, Key, KeyRound, LayoutDashboard, + LayoutGrid, Moon, NotebookTabs, ShieldHalf, Sun, Users, -======= - BadgeCheck, - Building2, - Key, - KeyRound, - LayoutDashboard, - LayoutGrid, - Moon, - NotebookTabs, - ShieldHalf, - Sun, - Users, ->>>>>>> d7d2e16 (feat: 테넌트 그룹(Tenant Group) 기능 구현 #239) } from "lucide-react"; import { useEffect, useState } from "react"; import { NavLink, Outlet } from "react-router-dom"; @@ -30,28 +17,18 @@ import { t } from "../../lib/i18n"; import RoleSwitcher from "./RoleSwitcher"; const navItems = [ -<<<<<<< HEAD { label: "ui.admin.nav.overview", to: "/", icon: LayoutDashboard }, { label: "ui.admin.nav.tenant_dashboard", to: "/dashboard", icon: ShieldHalf, }, + { label: "ui.admin.nav.tenant_groups", to: "/tenant-groups", icon: LayoutGrid }, { label: "ui.admin.nav.tenants", to: "/tenants", icon: Building2 }, { label: "ui.admin.nav.users", to: "/users", icon: Users }, { label: "ui.admin.nav.api_keys", to: "/api-keys", icon: Key }, { label: "ui.admin.nav.audit_logs", to: "/audit-logs", icon: NotebookTabs }, { label: "ui.admin.nav.auth_guard", to: "/auth", icon: KeyRound }, -======= - { label: "Overview", to: "/", icon: LayoutDashboard }, - { label: "Tenant Dashboard", to: "/dashboard", icon: ShieldHalf }, - { label: "Tenant Groups", to: "/tenant-groups", icon: LayoutGrid }, - { label: "Tenants", to: "/tenants", icon: Building2 }, - { label: "Users", to: "/users", icon: Users }, - { label: "API Keys (M2M)", to: "/api-keys", icon: Key }, - { label: "Audit Logs", to: "/audit-logs", icon: NotebookTabs }, - { label: "Auth Guard", to: "/auth", icon: KeyRound }, ->>>>>>> d7d2e16 (feat: 테넌트 그룹(Tenant Group) 기능 구현 #239) ]; function AppLayout() { @@ -183,4 +160,4 @@ function AppLayout() { ); } -export default AppLayout; +export default AppLayout; \ No newline at end of file