Skip to content

Commit 1674a66

Browse files
authored
fix(ui/cloud): missing SettingsNetworkRoute (#608)
1 parent 7725278 commit 1674a66

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

ui/src/main.tsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ if (isOnDevice) {
295295
path: "hardware",
296296
element: <SettingsHardwareRoute />,
297297
},
298+
{
299+
path: "network",
300+
element: <SettingsNetworkRoute />,
301+
},
298302
{
299303
path: "access",
300304
children: [
@@ -350,10 +354,11 @@ if (isOnDevice) {
350354
loader: DeviceIdRename.loader,
351355
action: DeviceIdRename.action,
352356
},
353-
{
354-
path: "devices",
357+
{
358+
path: "devices",
355359
element: <DevicesRoute />,
356-
loader: DevicesRoute.loader },
360+
loader: DevicesRoute.loader
361+
},
357362
],
358363
},
359364
],

0 commit comments

Comments
 (0)