Update dependencies #83

Open
thepaperpilot wants to merge 34 commits from thepaperpilot/Profectus:feat/update-deps into main
2 changed files with 10 additions and 7 deletions
Showing only changes of commit 528e703c88 - Show all commits

View file

@ -405,10 +405,10 @@ export function placeInAvailableSpace<T extends NodePosition>(
direction === Direction.Right
? (a, b) => a.x - b.x
: direction === Direction.Left
? (a, b) => b.x - a.x
: direction === Direction.Up
? (a, b) => b.y - a.y
: (a, b) => a.y - b.y
? (a, b) => b.x - a.x
: direction === Direction.Up
? (a, b) => b.y - a.y
: (a, b) => a.y - b.y
);
for (let i = 0; i < nodes.length; i++) {

View file

@ -104,6 +104,9 @@ watch(hasWon, hasWon => {
}
});
setInterval(() => {
state.mouseActivity = [...state.mouseActivity.slice(-7), false];
}, 1000 * 60 * 60);
setInterval(
() => {
state.mouseActivity = [...state.mouseActivity.slice(-7), false];
},
1000 * 60 * 60
);