From 87287552fdb9331580229ab054e1a4c632c1442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Wed, 18 Mar 2026 09:21:57 +0900 Subject: [PATCH] =?UTF-8?q?perf:=20[production-orders]=20stats=20API=20?= =?UTF-8?q?=EC=9D=B4=EC=A4=91=20=ED=98=B8=EC=B6=9C=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../order-management-sales/production-orders/page.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/app/[locale]/(protected)/sales/order-management-sales/production-orders/page.tsx b/src/app/[locale]/(protected)/sales/order-management-sales/production-orders/page.tsx index f80ae94f..c2214458 100644 --- a/src/app/[locale]/(protected)/sales/order-management-sales/production-orders/page.tsx +++ b/src/app/[locale]/(protected)/sales/order-management-sales/production-orders/page.tsx @@ -10,7 +10,7 @@ * - 서버사이드 페이지네이션 */ -import { useState, useEffect, useCallback } from "react"; +import { useState, useCallback } from "react"; import { useRouter } from "next/navigation"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; @@ -181,15 +181,6 @@ export default function ProductionOrdersListPage() { completed: 0, }); - // 통계 로드 - useEffect(() => { - getProductionOrderStats().then((result) => { - if (result.success && result.data) { - setStats(result.data); - } - }); - }, []); - const handleBack = () => { router.push("/sales/order-management-sales"); };