From 1674a6666c5491521784e7cdeec56298f3d16b18 Mon Sep 17 00:00:00 2001
From: Aveline <352441+ym@users.noreply.github.com>
Date: Fri, 13 Jun 2025 19:42:09 +0200
Subject: [PATCH] fix(ui/cloud): missing SettingsNetworkRoute (#608)
---
ui/src/main.tsx | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/ui/src/main.tsx b/ui/src/main.tsx
index e3badd1..298a3d8 100644
--- a/ui/src/main.tsx
+++ b/ui/src/main.tsx
@@ -295,6 +295,10 @@ if (isOnDevice) {
path: "hardware",
element: ,
},
+ {
+ path: "network",
+ element: ,
+ },
{
path: "access",
children: [
@@ -350,10 +354,11 @@ if (isOnDevice) {
loader: DeviceIdRename.loader,
action: DeviceIdRename.action,
},
- {
- path: "devices",
+ {
+ path: "devices",
element: ,
- loader: DevicesRoute.loader },
+ loader: DevicesRoute.loader
+ },
],
},
],