fix: use DailyChecklistKandangApi instead of KandangApi

This commit is contained in:
ValdiANS
2026-03-09 12:47:12 +07:00
parent f83abc91da
commit 30d5516161
2 changed files with 4 additions and 4 deletions
@@ -26,7 +26,6 @@ import {
import { DatePicker } from '@/figma-make/components/base/date-picker'; import { DatePicker } from '@/figma-make/components/base/date-picker';
import { toast } from 'sonner'; import { toast } from 'sonner';
import { useSelect } from '@/components/input/SelectInput'; import { useSelect } from '@/components/input/SelectInput';
import { KandangApi } from '@/services/api/master-data';
import { DailyChecklistApi } from '@/services/api/daily-checklist/daily-checklist'; import { DailyChecklistApi } from '@/services/api/daily-checklist/daily-checklist';
import { isResponseError, isResponseSuccess } from '@/lib/api-helper'; import { isResponseError, isResponseSuccess } from '@/lib/api-helper';
import useSWR from 'swr'; import useSWR from 'swr';
@@ -43,6 +42,7 @@ import DropFileInput from '@/components/input/DropFileInput';
import Link from 'next/link'; import Link from 'next/link';
import { useRouter, useSearchParams, usePathname } from 'next/navigation'; import { useRouter, useSearchParams, usePathname } from 'next/navigation';
import { Icon } from '@iconify/react'; import { Icon } from '@iconify/react';
import { DailyChecklistKandangApi } from '@/services/api/daily-checklist/kandang';
// Static categories // Static categories
const CATEGORIES = [ const CATEGORIES = [
@@ -87,7 +87,7 @@ export function DailyChecklistContent() {
); );
const { options: kandangOptions } = useSelect( const { options: kandangOptions } = useSelect(
KandangApi.basePath, DailyChecklistKandangApi.basePath,
'id', 'id',
'name', 'name',
'search', 'search',
@@ -34,9 +34,9 @@ import { DailyChecklist } from '@/types/api/daily-checklist/daily-checklist';
import { cn } from '@/lib/helper'; import { cn } from '@/lib/helper';
import { ColumnDef } from '@tanstack/react-table'; import { ColumnDef } from '@tanstack/react-table';
import { useSelect } from '@/components/input/SelectInput'; import { useSelect } from '@/components/input/SelectInput';
import { KandangApi } from '@/services/api/master-data';
import DebouncedTextInput from '@/components/input/DebouncedTextInput'; import DebouncedTextInput from '@/components/input/DebouncedTextInput';
import RequirePermission from '@/components/helper/RequirePermission'; import RequirePermission from '@/components/helper/RequirePermission';
import { DailyChecklistKandangApi } from '@/services/api/daily-checklist/kandang';
const STATUS_OPTIONS = [ const STATUS_OPTIONS = [
{ value: 'ALL', label: 'Semua Status' }, { value: 'ALL', label: 'Semua Status' },
@@ -94,7 +94,7 @@ export function ListDailyChecklistContent() {
); );
const { options: kandangOptions } = useSelect( const { options: kandangOptions } = useSelect(
KandangApi.basePath, DailyChecklistKandangApi.basePath,
'id', 'id',
'name', 'name',
'search', 'search',