From 4d24dd0f6dc6f13197ba1bdbe9549beab98ec6af Mon Sep 17 00:00:00 2001 From: csawatzky Date: Wed, 2 Jul 2025 16:50:16 -0600 Subject: [PATCH] removed logs --- src/device/autoDetect/DeviceScannedComponents.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/device/autoDetect/DeviceScannedComponents.tsx b/src/device/autoDetect/DeviceScannedComponents.tsx index 8b7cf7c..2f5efdd 100644 --- a/src/device/autoDetect/DeviceScannedComponents.tsx +++ b/src/device/autoDetect/DeviceScannedComponents.tsx @@ -49,7 +49,6 @@ export default function DeviceScannedComponents(props: Props){ },[scannedComponents]) useEffect(() => { - console.log(components) let steps: CompStep[] = [] components.forEach(comp => { steps.push({ @@ -181,7 +180,6 @@ export default function DeviceScannedComponents(props: Props){ }) }) } - console.log(cloneList) setComponents(cloneList) }