diff --git a/adminfront/src/features/tenants/routes/TenantListPage.tsx b/adminfront/src/features/tenants/routes/TenantListPage.tsx index e3459b49..3f877ceb 100644 --- a/adminfront/src/features/tenants/routes/TenantListPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantListPage.tsx @@ -6,7 +6,6 @@ import { ArrowUpDown, Download, FileSpreadsheet, - Pencil, Plus, RefreshCw, Search, @@ -634,9 +633,6 @@ function TenantListPage() { {getSortIcon("updatedAt")} - - {t("ui.admin.tenants.table.actions", "ACTIONS")} - @@ -682,7 +678,12 @@ function TenantListPage() {
- {tenant.name} + + {tenant.name} + {isSeedTenant(tenant) && ( {t("ui.admin.tenants.seed_badge", "초기 설정")} @@ -725,37 +726,6 @@ function TenantListPage() { ? new Date(tenant.updatedAt).toLocaleString("ko-KR") : "-"} - -
- - -
-
))}