From 1ce7220bfbca18203bc0cbb15693b130aea8786c Mon Sep 17 00:00:00 2001 From: Siyuan Miao Date: Fri, 13 Jun 2025 01:12:43 +0200 Subject: [PATCH] fix(ui/cloud): missing SettingsNetworkRoute --- 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 + }, ], }, ],