diff --git a/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js b/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js index 4695b267a57..d2cb7837fb5 100644 --- a/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js +++ b/src/fireedge/src/client/components/Tabs/Host/Graphs/index.js @@ -32,7 +32,7 @@ import { Tr } from 'client/components/HOC' const HostGraphTab = ({ id }) => { const { data: { MONITORING_DATA: { MONITORING: monitoring = [] } = {} } = {}, - } = useGetHostMonitoringQuery(id) || {} + } = useGetHostMonitoringQuery({ id: id }) || {} const cpuMemoryData = ( Array.isArray(monitoring) ? monitoring : [monitoring]