Merge branch 'master' into refactor/migrate-resample-module

This commit is contained in:
Marc Emmanuel 2026-03-10 11:39:46 +01:00
commit 54ba228fb6
11 changed files with 175 additions and 237 deletions

View file

@ -260,7 +260,7 @@ function getName(id) {
}
function getGraph(currentGraph) {
const newGraph = shouldRegenerateGrid(currentGraph, seed) ? generateGrid() : deepCopy(currentGraph);
const newGraph = shouldRegenerateGrid(currentGraph, seed) ? generateGrid() : structuredClone(currentGraph);
delete newGraph.cells.h;
return newGraph;
}