Skip to content

Commit

Permalink
fix: a build error in @adobe/spectrum-tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
GarthDB committed Jun 15, 2022
1 parent 22f4633 commit d6b64a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/css-sets-formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const formatter = ({ dictionary, platform, file, options }) => {
);
});

const selector = options.selector ?? ":root";
const selector = options.selector ? options.selector : ":root";

return `${selector} {
${resultAr.join(`
Expand Down

0 comments on commit d6b64a3

Please sign in to comment.