diff --git a/app/controllers/route_to_web.py b/app/controllers/route_to_web.py index 0412f48..77b6766 100644 --- a/app/controllers/route_to_web.py +++ b/app/controllers/route_to_web.py @@ -70,10 +70,7 @@ class RouteToWeb: # Find den aktuelle og næste kategori current_path = request.url.path.split("/")[-1] next_category = None - print(current_path) - for index, category in enumerate( categories ): - print(category) if category["path"] == current_path: # Find næste kategori (cirkulær, hvis det er den sidste) next_index = (index + 1) % len( categories )