0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-04-18 01:34:17 -05:00
This commit is contained in:
Alex Sánchez 2024-06-17 09:56:27 +02:00
parent 7b998da63d
commit 987d3dbfee
No known key found for this signature in database
GPG key ID: 68A95170EEB87E16

View file

@ -9,11 +9,11 @@ export const transformOverrides = (node: SceneNode) => {
return {};
}
let touched: SyncGroups[] = [];
const touched: SyncGroups[] = [];
overrides.forEach(override => {
if (syncAttributes[override]) {
touched = [...touched, ...syncAttributes[override]];
touched.push(...syncAttributes[override]);
}
});