diff --git a/client/src/Pages/StatusPage/Create/Hooks/useMonitorsFetch.jsx b/client/src/Pages/StatusPage/Create/Hooks/useMonitorsFetch.jsx index a665aa9eb..e3c4ae2fc 100644 --- a/client/src/Pages/StatusPage/Create/Hooks/useMonitorsFetch.jsx +++ b/client/src/Pages/StatusPage/Create/Hooks/useMonitorsFetch.jsx @@ -15,7 +15,7 @@ const useMonitorsFetch = () => { const response = await networkService.getMonitorsByTeamId({ teamId: user.teamId, limit: null, // donot return any checks for the monitors - types: ["http"], // status page is available only for the uptime type + types: ["http", "ping"], // status page is available for uptime and ping monitors }); setMonitors(response.data.data.monitors); } catch (error) {