From 4dfdd8019e9ef4faff3d40e098dda831544493d6 Mon Sep 17 00:00:00 2001
From: Robin Leber <rleber98@gmail.com>
Date: Tue, 25 Jun 2024 17:47:07 +0200
Subject: [PATCH] FIX: remove log

---
 src/functions/pipeBinding.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/functions/pipeBinding.js b/src/functions/pipeBinding.js
index b8b880d..a82b27b 100644
--- a/src/functions/pipeBinding.js
+++ b/src/functions/pipeBinding.js
@@ -133,7 +133,6 @@ const buildPipesElements = (pipeMapping) => {
   const outgoingPipesElement = document.getElementById("outgoingPipes");
 
   incomingPipes.forEach((pipe) => {
-    console.log(pipe);
     const pipeElement = document.createElement("span");
     pipeElement.appendChild(document.createTextNode(pipe.pipeName));
     pipeElement.style.marginRight = "6px";
-- 
GitLab