diff --git a/src/components/modules/system/SystemModule.tsx b/src/components/modules/system/SystemModule.tsx index 7fe016d6e..060d89482 100644 --- a/src/components/modules/system/SystemModule.tsx +++ b/src/components/modules/system/SystemModule.tsx @@ -40,23 +40,22 @@ export default function SystemInfo(args: any) { }, 1000); }, [args]); - // Update data every time data changes + // Update data every time data changes const [cpuLoadHistory, cpuLoadHistoryHandlers] = useListState([]); - // useEffect(() => { - - // }, [data]); + // useEffect(() => { + + // }, [data]); const theme = useMantineTheme(); const currentLoad = data?.load?.currentLoad ?? 0; - return (
Current CPU load - { @@ -108,7 +107,7 @@ export default function SystemInfo(args: any) { // Green theme.colors.green[5], ]} - /> + /> */} {`${(currentLoad * 100).toFixed(2)}%`}
}