Skip to content

Commit

Permalink
fix(sketch): filter correct layer name when generating icon symbols (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
emyarod authored Mar 27, 2020
1 parent 19d8aeb commit e349c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sketch/src/commands/icons/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function syncIconSymbols(
) {
const sharedStyles = syncColorStyles(document);
const [sharedStyle] = sharedStyles.filter(
({ name }) => name === 'color/black'
({ name }) => name === 'color / black'
);

if (!sharedStyle) {
Expand Down

0 comments on commit e349c77

Please sign in to comment.