Skip to content
Snippets Groups Projects
Commit 6fe6c239 authored by chris's avatar chris
Browse files

remove console.log

parent 28684a70
No related branches found
No related tags found
1 merge request!117Current features fixes
......@@ -59,8 +59,6 @@ export default props => {
}, []);
const dispatchTransaction = transaction => {
const { TrackChange } = props;
/*when a transaction comes from a view other than
main don't keep updating the view ,as this this
the central point of each transaction
......@@ -73,7 +71,8 @@ export default props => {
"main"
);
}
const tr = TrackChange
const tr = { props: { TrackChange } }
? trackedTransaction(transaction, view.state, user)
: transaction;
......
......@@ -33,7 +33,6 @@ const trackedTransaction = (tr, state, user) => {
}
const group = tr.getMeta("outsideView") ? tr.getMeta("outsideView") : "main";
console.log(group);
const newTr = state.tr;
const map = new Mapping();
const date = Math.floor(Date.now() / 300000);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment