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

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
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: [
@ -353,7 +357,8 @@ if (isOnDevice) {
{
path: "devices",
element: <DevicesRoute />,
loader: DevicesRoute.loader },
loader: DevicesRoute.loader
},
],
},
],