diff --git a/brian_dashboard_manager/templating/helpers.py b/brian_dashboard_manager/templating/helpers.py
index c51ab7318433084bbead2bca94e59641da35508d..adff696f552c4e25c1f1b6219f26e97310d2d933 100644
--- a/brian_dashboard_manager/templating/helpers.py
+++ b/brian_dashboard_manager/templating/helpers.py
@@ -129,16 +129,15 @@ def get_nren_interface_data(services, interfaces, excluded_dashboards):
                     'scid': scid
                 })
 
-            else:
-                if 'MDVPN' in service['service_type']:
-                    # MDVPN type services don't have data in BRIAN
-                    continue
-                title = f'{name} ({sid})'
-                dashboard['SERVICES'].append({
-                    'measurement': measurement,
-                    'title': title,
-                    'scid': scid
-                })
+            if 'MDVPN' in service['service_type']:
+                # MDVPN type services don't have data in BRIAN
+                continue
+            title = f'{name} ({sid})'
+            dashboard['SERVICES'].append({
+                'measurement': measurement,
+                'title': title,
+                'scid': scid
+            })
 
     for interface in interfaces: