diff --git a/src/widgets/uptimerobot/component.jsx b/src/widgets/uptimerobot/component.jsx index a1f234c2e..228b5b9a9 100644 --- a/src/widgets/uptimerobot/component.jsx +++ b/src/widgets/uptimerobot/component.jsx @@ -31,6 +31,10 @@ export default function Component({ service }) { ); } + if (uptimerobotData.error) { + return ; + } + // multiple monitors if (uptimerobotData.pagination?.total > 1) { const sitesUp = uptimerobotData.monitors.filter((m) => m.status === 2).length;