Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sdadn committed May 6, 2024
1 parent e54c9f5 commit 5187ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/terra-icon/scripts/src/icon-utils/parseCsv.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const parseCsv = () => new Promise((resolve) => {
jsonObj.bidi = (jsonObj.bidi === 'bi-directional');
jsonObj.spinner = (jsonObj.name === 'IconSpinner');
jsonObj.syntaxComponent = `<${jsonObj.componentName} height='2em' width='2em' />`;
jsonObj.syntaxImport = `import \{ ${jsonObj.componentName} \} from 'terra-icon';\n`;
jsonObj.syntaxImport = `import { ${jsonObj.componentName} } from 'terra-icon';\n`;
/* eslint-enable no-param-reassign */
}).then(jsonObj => resolve(jsonObj));
});
Expand Down

0 comments on commit 5187ad7

Please sign in to comment.