diff --git a/frontend/app/(main)/admin/automaticMng/batchmngList/page.tsx b/frontend/app/(main)/admin/automaticMng/batchmngList/page.tsx
index e8ce9a78..b1461416 100644
--- a/frontend/app/(main)/admin/automaticMng/batchmngList/page.tsx
+++ b/frontend/app/(main)/admin/automaticMng/batchmngList/page.tsx
@@ -89,7 +89,7 @@ export default function BatchManagementPage() {
const newStatus = currentStatus === 'Y' ? 'N' : 'Y';
console.log("π μλ‘μ΄ μν:", newStatus);
- const result = await BatchAPI.updateBatchConfig(batchId, { isActive: newStatus });
+ const result = await BatchAPI.updateBatchConfig(batchId, { isActive: newStatus === 'Y' });
console.log("β
API νΈμΆ μ±κ³΅:", result);
toast.success(`λ°°μΉκ° ${newStatus === 'Y' ? 'νμ±ν' : 'λΉνμ±ν'}λμμ΅λλ€.`);
diff --git a/frontend/components/admin/BatchCard.tsx b/frontend/components/admin/BatchCard.tsx
index faa935aa..9e869b16 100644
--- a/frontend/components/admin/BatchCard.tsx
+++ b/frontend/components/admin/BatchCard.tsx
@@ -79,7 +79,7 @@ export default function BatchCard({
μμ±μΌ
- {new Date(batch.created_date).toLocaleDateString('ko-KR')}
+ {batch.created_date ? new Date(batch.created_date).toLocaleDateString('ko-KR') : '-'}
@@ -119,7 +119,7 @@ export default function BatchCard({