fix(ui/cloud): missing SettingsNetworkRoute

This commit is contained in:
Siyuan Miao 2025-06-13 01:12:43 +02:00
parent b822b73a03
commit 1ce7220bfb
1 changed files with 8 additions and 3 deletions

View File

@ -295,6 +295,10 @@ if (isOnDevice) {
path: "hardware",
element: <SettingsHardwareRoute />,
},
{
path: "network",
element: <SettingsNetworkRoute />,
},
{
path: "access",
children: [
@ -350,10 +354,11 @@ if (isOnDevice) {
loader: DeviceIdRename.loader,
action: DeviceIdRename.action,
},
{
path: "devices",
{
path: "devices",
element: <DevicesRoute />,
loader: DevicesRoute.loader },
loader: DevicesRoute.loader
},
],
},
],