diff --git a/libs/remix-ui/vertical-icons-panel/src/lib/components/Badge.tsx b/libs/remix-ui/vertical-icons-panel/src/lib/components/Badge.tsx
index 18161e8da5..bfd2994a5e 100644
--- a/libs/remix-ui/vertical-icons-panel/src/lib/components/Badge.tsx
+++ b/libs/remix-ui/vertical-icons-panel/src/lib/components/Badge.tsx
@@ -48,26 +48,34 @@ function Badge ({ badgeStatus }: BadgeProps) {
return (
<>
- {
- badgeStatus && checkStatusKeyValue(badgeStatus.key, badgeStatus.type) ? (
-
-
- { badgeStatus.pluginName && badgeStatus.pluginName === 'solidityStaticAnalysis' ? badgeStatus.type === 'warning' || badgeStatus.type === 'error' ?
-
- : : badgeStatus.text }
-
- ) : null
- }
+ {badgeStatus && checkStatusKeyValue(badgeStatus.key, badgeStatus.type) ? (
+
+
+ {badgeStatus.pluginName &&
+ badgeStatus.pluginName === "solidityStaticAnalysis" ? (
+ badgeStatus.type === "warning" || badgeStatus.type === "error" || badgeStatus.type === "danger" ? (
+
+
+
+ ) : (
+
+ )
+ ) : (
+ badgeStatus.text
+ )}
+
+
+ ) : null}
>
- )
+ );
}
export default Badge