Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cenadros committed Jun 3, 2024
1 parent 9224e31 commit 7d10065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin-src/transformers/partials/transformFigmaIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const transformMaskFigmaIds = (
const transformedIds = transformFigmaIds(node);
return {
figmaId: `M${transformedIds.figmaId}`,
figmaRelatedId: transformedIds.figmaRelatedId ? `M{transformedIds.figmaRelatedId}` : undefined
figmaRelatedId: transformedIds.figmaRelatedId ? `M${transformedIds.figmaRelatedId}` : undefined
};
};

Expand Down

0 comments on commit 7d10065

Please sign in to comment.