From 46cfc2539eb8930ac11da3432c86aede8de6d847 Mon Sep 17 00:00:00 2001 From: randy-ar Date: Wed, 28 Jan 2026 17:55:57 +0700 Subject: [PATCH] fix(FE): remove unused import --- src/components/pages/dashboard/DashboardProduction.tsx | 5 +---- .../pages/dashboard/export/DashboardExportStats.tsx | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/components/pages/dashboard/DashboardProduction.tsx b/src/components/pages/dashboard/DashboardProduction.tsx index 3631d4ca..c3cfaf52 100644 --- a/src/components/pages/dashboard/DashboardProduction.tsx +++ b/src/components/pages/dashboard/DashboardProduction.tsx @@ -4,10 +4,7 @@ import Button from '@/components/Button'; import { Icon } from '@iconify/react'; import Modal, { useModal } from '@/components/Modal'; import DateInput from '@/components/input/DateInput'; -import SelectInput, { - OptionType, - useSelect, -} from '@/components/input/SelectInput'; +import { OptionType, useSelect } from '@/components/input/SelectInput'; import { useState, useEffect, useRef, useCallback } from 'react'; import useSWR from 'swr'; import { DashboardApi } from '@/services/api/dashboard'; diff --git a/src/components/pages/dashboard/export/DashboardExportStats.tsx b/src/components/pages/dashboard/export/DashboardExportStats.tsx index 9d783313..3f452d9c 100644 --- a/src/components/pages/dashboard/export/DashboardExportStats.tsx +++ b/src/components/pages/dashboard/export/DashboardExportStats.tsx @@ -1,10 +1,7 @@ import Alert from '@/components/Alert'; import Card from '@/components/Card'; import { formatNumber } from '@/lib/helper'; -import { - DashboardOverviewCharts, - DashboardStatisticsData, -} from '@/types/api/dashboard/dashboard'; +import { DashboardStatisticsData } from '@/types/api/dashboard/dashboard'; import { Icon } from '@iconify/react'; import { forwardRef, useImperativeHandle, useRef } from 'react'; interface DashboardStatsProps {