mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-04-18 01:34:17 -05:00
fixes
This commit is contained in:
parent
7b998da63d
commit
987d3dbfee
1 changed files with 2 additions and 2 deletions
|
@ -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]);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue