This commit is contained in:
Adrian Ortiz 2024-09-07 12:57:00 -06:00
parent be0302771d
commit 4886332ff5
2 changed files with 66 additions and 66 deletions

View file

@ -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) => ({ category: name, ...tool }),
);