Skip to content

Commit 3555e96

Browse files
committed
Fix
1 parent 24ebda9 commit 3555e96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/altNodes/jsonNodeConversion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ const processNodePair = async (
320320
// Get visible JSON children (filters out nodes with visible: false)
321321
const visibleJsonChildren = jsonNode.children.filter(
322322
(child) => child.visible !== false,
323-
);
323+
) as AltNode[];
324324

325325
// Map figma children to their IDs for matching
326326
const figmaChildrenById = new Map();

0 commit comments

Comments
 (0)