fix(ui/cloud): missing SettingsNetworkRoute (#608)

This commit is contained in:
Aveline 2025-06-13 19:42:09 +02:00 committed by Siyuan Miao
parent b73741c874
commit b0e2607325
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
},
],
},
],