From ebe80358eed3e2456993fc941cabe868e052bee0 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Thu, 26 Feb 2026 11:11:51 +0700 Subject: [PATCH] refactor(FE): Remove unused import isResponseSuccess from InventoryAdjustmentForm --- .../inventory/adjustment/form/InventoryAdjustmentForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx b/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx index 40dc8009..f4996f90 100644 --- a/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx +++ b/src/components/pages/inventory/adjustment/form/InventoryAdjustmentForm.tsx @@ -1,6 +1,6 @@ 'use client'; -import { isResponseError, isResponseSuccess } from '@/lib/api-helper'; +import { isResponseError } from '@/lib/api-helper'; import { InventoryAdjustmentApi } from '@/services/api/inventory'; import { CreateInventoryAdjustmentPayload, @@ -727,7 +727,7 @@ const InventoryAdjustmentForm = ({ // Render return ( <> -
+