diff --git a/src/components/widgets/resources/resources.jsx b/src/components/widgets/resources/resources.jsx index d082f515..321f235d 100644 --- a/src/components/widgets/resources/resources.jsx +++ b/src/components/widgets/resources/resources.jsx @@ -1,6 +1,7 @@ import useSWR from "swr"; import { FiHardDrive, FiCpu } from "react-icons/fi"; import { FaMemory } from "react-icons/fa"; +import { BiError } from "react-icons/bi"; export default function Resources({ options }) { const { data, error } = useSWR( @@ -11,7 +12,15 @@ export default function Resources({ options }) { ); if (error) { - return
failed to load
; + return ( +
+ +
+ Resources + Error +
+
+ ); } if (!data) {