fix(ui/cloud): missing SettingsNetworkRoute (#608)
Some checks failed
build image / Build (push) Has been cancelled
ui-lint / UI Lint (push) Has been cancelled

This commit is contained in:
Aveline 2025-06-13 19:42:09 +02:00 committed by GitHub
parent 772527849f
commit 1674a6666c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
},
],
},
],