Skip to content

Commit

Permalink
fix(icons): resolve issue related to paths concatenation (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
mimshins authored Nov 20, 2024
1 parent 1bb0e05 commit c01ffce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react-icons/scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const generateComponents = async () => {
iconTemplateStr,
{
name: iconInfo.pascalName,
paths: paths.join(),
paths: paths.join(""),
},
{},
{ escape: v => v as string },
Expand Down
2 changes: 1 addition & 1 deletion packages/web-icons/scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const generateComponents = async () => {
iconTemplateStr,
{
name: iconInfo.pascalName,
paths: paths.join(),
paths: paths.join(""),
elementTag: iconInfo.kebabName,
},
{},
Expand Down

0 comments on commit c01ffce

Please sign in to comment.