From d1eab6cd6182d4e6534f157da6684eb3319a1e93 Mon Sep 17 00:00:00 2001 From: Carter Date: Thu, 13 Feb 2025 11:21:01 -0600 Subject: [PATCH] printing modem component for debug --- src/device/DeviceOverview.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/device/DeviceOverview.tsx b/src/device/DeviceOverview.tsx index 22ceb24..88f8de8 100644 --- a/src/device/DeviceOverview.tsx +++ b/src/device/DeviceOverview.tsx @@ -149,6 +149,7 @@ export default function DeviceOverview(props: Props) { variant={modemComponent ? "filled" : "outlined"} clickable={modemComponent !== null} onClick={() => { + console.log(modemComponent) if (modemComponent && modemComponent.key()) { navigate(pathToDevice() + "/components/" + modemComponent.key()); }