1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Merge branch 'feature/backend-routing' of github.com:Budibase/budibase into routing-ui

This commit is contained in:
Martin McKeaveney 2020-11-19 17:08:10 +00:00
commit 169cbe4a42
2 changed files with 0 additions and 2 deletions

View file

@ -49,7 +49,6 @@ export const getFrontendStore = () => {
return state
})
const screens = await api.get("/api/screens").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)

View file

@ -1,4 +1,3 @@
import { cloneDeep } from "lodash/fp"
import { v4 } from "uuid"
import { BaseStructure } from "./BaseStructure"