Changing back to builder getting the normal routing structure for builder.

This commit is contained in:
mike12345567 2020-11-18 15:13:25 +00:00
parent 6a50b1057d
commit 82feb6d740
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ export const getFrontendStore = () => {
return state
})
const screens = await api.get("/api/screens").then(r => r.json())
const routing = await api.get("/api/routing/client").then(r => r.json())
const routing = await api.get("/api/routing").then(r => r.json())
const mainScreens = screens.filter(screen =>
screen._id.includes(pkg.pages.main._id)