diff --git a/src/figma-make/components/pages/master-data/kandang/MasterKandangContent.tsx b/src/figma-make/components/pages/master-data/kandang/MasterKandangContent.tsx index 3d3ba1c2..33de94e4 100644 --- a/src/figma-make/components/pages/master-data/kandang/MasterKandangContent.tsx +++ b/src/figma-make/components/pages/master-data/kandang/MasterKandangContent.tsx @@ -49,9 +49,8 @@ import { cn } from '@/lib/helper'; import { useTableFilter } from '@/services/hooks/useTableFilter'; import { ColumnDef } from '@tanstack/react-table'; import { useSelect } from '@/components/input/SelectInput'; -import { KandangApi, LocationApi } from '@/services/api/master-data'; +import { LocationApi } from '@/services/api/master-data'; import DebouncedTextInput from '@/components/input/DebouncedTextInput'; -import { BaseDailyChecklistKandang } from '@/types/api/daily-checklist/kandang'; import { UserApi } from '@/services/api/user'; export function MasterKandangContent() { @@ -108,12 +107,6 @@ export function MasterKandangContent() { } ); - const { - options: kandangOptions, - isLoadingMore: isLoadingKandangOptionsMore, - loadMore: loadMoreKandang, - } = useSelect(KandangApi.basePath, 'id', 'name'); - const [showModal, setShowModal] = useState(false); const [showDeleteConfirm, setShowDeleteConfirm] = useState(false); const [kandangToDelete, setKandangToDelete] = useState(null);