1
0
Fork 0
mirror of synced 2024-07-06 23:10:57 +12:00

Remove leftovers.

This commit is contained in:
pngwn 2020-01-24 15:34:44 +00:00
parent a5d1b7a651
commit 1a77b0ae00

View file

@ -138,7 +138,7 @@ const initialise = (store, initial) => async () => {
shadowHierarchy, initial.currentNode.nodeId shadowHierarchy, initial.currentNode.nodeId
); );
} }
console.log(initial)
store.set(initial); store.set(initial);
return initial; return initial;
} }
@ -712,7 +712,6 @@ const addChildComponent = store => component => {
children ? children ?
children.concat(component_definition) : children.concat(component_definition) :
[component_definition]; [component_definition];
console.log(component_definition)
return s; return s;
}) })
@ -721,7 +720,6 @@ const addChildComponent = store => component => {
const selectComponent = store => component => { const selectComponent = store => component => {
store.update(s => { store.update(s => {
s.currentComponentInfo = component; s.currentComponentInfo = component;
console.log(s)
return s; return s;
}) })