Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Ortiz committed Sep 7, 2024
1 parent 4886332 commit 8a723eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,5 +211,5 @@ export const toolsByCategory: ToolCategory[] = [

export const tools = toolsByCategory.flatMap(({ components }) => components);
export const toolsWithCategory = toolsByCategory.flatMap(({ components, name }) =>
components.map(tool) => ({ category: name, ...tool }),
components.map((tool) => ({ ...tool, category: name })),

Check failure on line 214 in src/tools/index.ts

View workflow job for this annotation

GitHub Actions / ci

Unexpected parentheses around single function argument having a body with no curly braces
);

0 comments on commit 8a723eb

Please sign in to comment.