From 9144186e8a3f1f25e2c6ed402045c065c5373a1b Mon Sep 17 00:00:00 2001 From: zio Date: Mon, 13 Jul 2026 23:47:23 +0900 Subject: [PATCH] fix(web): drop unused EmptyState import in TenantAdminPage (build break) Co-Authored-By: Claude Fable 5 --- src/frontend/src/screens/admin/TenantAdminPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/screens/admin/TenantAdminPage.tsx b/src/frontend/src/screens/admin/TenantAdminPage.tsx index 85e5b44..4a7d609 100644 --- a/src/frontend/src/screens/admin/TenantAdminPage.tsx +++ b/src/frontend/src/screens/admin/TenantAdminPage.tsx @@ -10,7 +10,7 @@ import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; import { useTranslation } from 'react-i18next'; import type { TFunction } from 'i18next'; import { Button } from '../../components/ui/Button'; -import { EmptyState, ErrorState, Skeleton } from '../../components/ui/States'; +import { ErrorState, Skeleton } from '../../components/ui/States'; import { KxDataTable, type KxColumn } from '../../components/KxDataTable'; import { IconCheck, IconPlus } from '../../components/ui/icons'; import { errMessage, useToast } from '../work/workShared';