diff --git a/web/src/routes/System.jsx b/web/src/routes/System.jsx
index 27f9e9732..b6fb1fe61 100644
--- a/web/src/routes/System.jsx
+++ b/web/src/routes/System.jsx
@@ -187,20 +187,27 @@ export default function System() {
{gpu}
-
-
-
- | Gpu % |
- Memory % |
-
-
-
-
- | {gpu_usages[gpu]['gpu']} |
- {gpu_usages[gpu]['mem']} |
-
-
-
+ {gpu_usages[gpu]['gpu'] == -1 ? (
+
+ There was an error getting usage stats. Either your GPU does not support this or frigate does
+ not have proper access.
+
+ ) : (
+
+
+
+ | Gpu % |
+ Memory % |
+
+
+
+
+ | {gpu_usages[gpu]['gpu']} |
+ {gpu_usages[gpu]['mem']} |
+
+
+
+ )}
))}