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") : "-"} - - - navigate(`/tenants/${tenant.id}`)} - > - - {t("ui.common.edit", "편집")} - - handleDelete(tenant.id, tenant.name)} - disabled={ - deleteMutation.isPending || isSeedTenant(tenant) - } - title={ - isSeedTenant(tenant) - ? t( - "msg.admin.tenants.seed_delete_blocked", - "초기 설정 테넌트는 삭제할 수 없습니다.", - ) - : undefined - } - > - - {t("ui.common.delete", "삭제")} - - - ))}