feat: more tests, refactored

This commit is contained in:
2026-05-24 21:05:21 +07:00
parent e7dd9420e7
commit c1f12c7201
33 changed files with 1403 additions and 334 deletions
+2 -1
View File
@@ -27,7 +27,8 @@ export function hasProjectChanged(left: Project, right: Project): boolean {
a.height !== b.height ||
a.scale !== b.scale ||
a.rotation !== b.rotation ||
a.opacity !== b.opacity
a.opacity !== b.opacity ||
a.visible !== b.visible
) {
return true;
}