fix: remove offset field from asset node data in FlowGraphV2

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Guilhem Lemouel
2026-03-10 09:50:42 +01:00
co-authored by Claude Opus 4.6
parent 13a064e898
commit c3f7b09c33
@@ -599,10 +599,7 @@
let assetNodesResult = $showAssets
? computeAssetNodes(
newNodes.map((n) => ({
data: {
assets: n.data?.assets as AssetWithAltAccessType[],
offset: n.data?.offset as number
},
data: { assets: n.data?.assets as AssetWithAltAccessType[] },
id: n.id,
position: n.position
}))