1
0
Fork 0
mirror of synced 2024-06-23 08:30:31 +12:00

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 48f0608c74
commit 634eacd5b9

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)