From 7895a4dc47dd6070afc20521e17819ea2bfd1ce6 Mon Sep 17 00:00:00 2001 From: John Duprey Date: Mon, 10 Feb 2025 19:39:44 -0500 Subject: [PATCH] Update CippApiResults.jsx --- src/components/CippComponents/CippApiResults.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CippComponents/CippApiResults.jsx b/src/components/CippComponents/CippApiResults.jsx index 21af58b8cc39..0c5807c379ed 100644 --- a/src/components/CippComponents/CippApiResults.jsx +++ b/src/components/CippComponents/CippApiResults.jsx @@ -10,7 +10,7 @@ const extractAllResults = (data) => { const getSeverity = (text) => { if (typeof text !== "string") return "success"; - return /error|failed|exception|not found/i.test(text) ? "error" : "success"; + return /error|failed|exception|not found|invalid_grant/i.test(text) ? "error" : "success"; }; const processResultItem = (item) => {