1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
This commit is contained in:
Conor Mack 2020-09-08 16:15:14 +01:00
parent d0f48e3d0e
commit 49a69b3b80

View file

@ -116,18 +116,6 @@ const setPackage = (store, initial) => async pkg => {
return initial
}
// const getAllScreens = store => async pkg => {
// const [main_screens, unauth_screens] = await Promise.all([
// api
// .get(`/_builder/api/${pkg.application._id}/pages/main/screens`)
// .then(r => r.json()),
// api
// .get(`/_builder/api/${pkg.application._id}/pages/unauthenticated/screens`)
// .then(r => r.json()),
// ])
// return { main_screens, unauth_screens }
// }
const saveScreen = store => screen => {
store.update(state => {
return _saveScreen(store, state, screen)