Commit 9be0b30c authored by pythongosssss's avatar pythongosssss
Browse files

fix formatting

parent 34eccd86
......@@ -10,7 +10,7 @@ function checkState() {
const currentState = app.graph.serialize();
if (!graphEqual(activeState, currentState)) {
undo.push(activeState);
if(undo.length > MAX_HISTORY) {
if (undo.length > MAX_HISTORY) {
undo.shift();
}
activeState = clone(currentState);
......
Markdown is supported
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