From 0ab1954500b4f921850bb26b6e1a7442d72ccff7 Mon Sep 17 00:00:00 2001
From: "Aamon P. Hoffmann" <aamon.hoffmann@student.uni-halle.de>
Date: Sun, 5 Jan 2025 13:06:59 +0100
Subject: [PATCH] remove Debug statements

---
 src/Views/ForceDirectedGraph.elm | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/Views/ForceDirectedGraph.elm b/src/Views/ForceDirectedGraph.elm
index 2c5842e..2e4fef3 100644
--- a/src/Views/ForceDirectedGraph.elm
+++ b/src/Views/ForceDirectedGraph.elm
@@ -207,9 +207,6 @@ postInit data local =
         filteredData =
             filterForYears data year
 
-        -- _ =
-        --     Debug.log "filteredData" filteredData
-
         countryNames =
             List.map (\ent -> String.toUpper ent.state) filteredData
 
@@ -340,9 +337,6 @@ postInit data local =
                                                 )
                                             |> List.Statistics.mean
                                             |> Maybe.withDefault 0
-
-                                    -- _ =
-                                    --     Debug.log "meanIssRat" meanIssRat
                                 in
                                 { source = e.from, target = e.to, distance = (min w h / 1.5) * meanIssRat, strength = Just 1 }
                             )
-- 
GitLab