hotfix adding component path to the group router

This commit is contained in:
csawatzky 2026-03-05 12:48:59 -06:00
parent d03b4c6158
commit 5c4f192010

View file

@ -278,6 +278,10 @@ export default function Router() {
path="/:groupID/devices/:deviceID" path="/:groupID/devices/:deviceID"
element={<DevicePage />} element={<DevicePage />}
/> />
<Route
path="/:groupID/devices/:deviceID/components/:componentID"
element={<DeviceComponent />}
/>
<Route <Route
path="/:groupID/devices/:deviceID/*" path="/:groupID/devices/:deviceID/*"
element={<RelativeRoutes />} element={<RelativeRoutes />}