Skip to content

Commit

Permalink
fix: join
Browse files Browse the repository at this point in the history
  • Loading branch information
gronxb committed Sep 14, 2024
1 parent 0488ec1 commit e94465e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const add = async (iconNames: string[]) => {
await Promise.all(
groupedIcons.map(async ([prefix, icons]) => {
if (!(await checkAvailableIcons(prefix, icons))) {
throw new Error(`Not found ${prefix}`);
throw new Error(`Not found ${icons.join(", ")}`);
}
})
);
Expand Down

0 comments on commit e94465e

Please sign in to comment.