diff --git a/src/widgets/crowdsec/component.jsx b/src/widgets/crowdsec/component.jsx
index 9565ee73..2e98cee9 100644
--- a/src/widgets/crowdsec/component.jsx
+++ b/src/widgets/crowdsec/component.jsx
@@ -16,7 +16,7 @@ export default function Component({ service }) {
return ;
}
- if (!alerts || !bans) {
+ if (!alerts && !bans) {
return (
@@ -27,8 +27,8 @@ export default function Component({ service }) {
return (
-
-
+
+
);
}
diff --git a/src/widgets/crowdsec/proxy.js b/src/widgets/crowdsec/proxy.js
index a367e716..e78fbc5e 100644
--- a/src/widgets/crowdsec/proxy.js
+++ b/src/widgets/crowdsec/proxy.js
@@ -71,10 +71,6 @@ export default async function crowdsecProxyHandler(req, res) {
logger.debug("Calling Crowdsec API endpoint: %s", endpoint);
- if (endpoint.indexOf("decisions") === 0) {
- delete params.headers.Authorization;
- }
-
const [status, , data] = await httpProxy(url, params);
if (status !== 200) {