diff --git a/plugins/deadlock-extension/src/view/briefingView.ts b/plugins/deadlock-extension/src/view/briefingView.ts
index 4faf5450e0bf4de6711c7647763b11690c828eca..f75b3316bfa61d4af6993bae25b94723ef186581 100644
--- a/plugins/deadlock-extension/src/view/briefingView.ts
+++ b/plugins/deadlock-extension/src/view/briefingView.ts
@@ -69,9 +69,11 @@ export default class BriefingView extends View {
 
     let pathsLength = 0;
     for (const key in this.userChallengeConfig?.paths) {
-      pathsLength++;
-      const path = this.userChallengeConfig?.paths[key];
-      adresses += `<li>${key} binded on <a href="https://${this.userChallengeConfig?.host}/${path}">${path}</a></li>`;
+      if (key !== '3000') {
+        pathsLength++;
+        const path = this.userChallengeConfig?.paths[key];
+        adresses += `<li>${key} binded on <a href="https://${this.userChallengeConfig?.host}/${path}">${path}/</a></li>`;
+      }
     }
 
     if (pathsLength > 0) {