♻️ refactor!: massive refactor

This commit is contained in:
2026-05-31 03:04:30 +07:00
parent c1f12c7201
commit df3c944547
86 changed files with 3691 additions and 1129 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ describe("useEditorBindings", () => {
const { result } = renderHook(() => useEditorBindings());
expect(result.current.state.project.layers.length).toBe(1);
expect(result.current.state.selectedLayer?.id).toBe(result.current.state.selectedLayerId);
expect(result.current.state.selectedLayer?.id).toBe(
result.current.state.selectedLayerId,
);
expect(typeof result.current.actions.undo).toBe("function");
});
});