Skip to content

Commit

Permalink
fix(Icon-100): [BLA-773] Ypdate build path for icon-100
Browse files Browse the repository at this point in the history
  • Loading branch information
swethab184 committed May 20, 2024
1 parent f7fe376 commit 41aad08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core-components/src/utils/icon/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ export const buildPath = (icon: string, folderName: string) => {
} else if (folderName === 'icons') {
return `${ICON_PATH}/icons/${icon}.svg`;
} else {
return `${ICON_PATH}/${icon}.svg`;
return `${ICON_PATH}/${folderName}/${icon}.svg`;
}
};

0 comments on commit 41aad08

Please sign in to comment.