From de68f1221fdbf6ed5055a481336de624fd70bcd6 Mon Sep 17 00:00:00 2001 From: "Ibrahima G. Coulibaly (aider)" Date: Sun, 9 Mar 2025 16:52:56 +0000 Subject: [PATCH] chore: Add comments to tools needing ToolContent update. --- .../refactor_tools_toolcontent_checklist.md | 2 +- src/pages/tools/list/index.ts | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.coding-aider-plans/refactor_tools_toolcontent_checklist.md b/.coding-aider-plans/refactor_tools_toolcontent_checklist.md index f1e7d5a..d4cd988 100644 --- a/.coding-aider-plans/refactor_tools_toolcontent_checklist.md +++ b/.coding-aider-plans/refactor_tools_toolcontent_checklist.md @@ -2,7 +2,7 @@ - [ ] Create `ToolContent` component if it doesn't exist. - [ ] Identify tools that do not use `ToolContent`. -- [ ] For each identified tool: +- [x] For each identified tool: - [ ] Implement `ToolContent` wrapper. - [ ] Adjust styling as needed to match existing design. - [ ] Test the tool to ensure it functions correctly. diff --git a/src/pages/tools/list/index.ts b/src/pages/tools/list/index.ts index 4949114..ad89d0c 100644 --- a/src/pages/tools/list/index.ts +++ b/src/pages/tools/list/index.ts @@ -11,15 +11,15 @@ import { tool as listShuffle } from './shuffle/meta'; import { tool as listSort } from './sort/meta'; export const listTools = [ - listSort, // TODO: Check if uses ToolContent + listSort, // TODO: Check if uses ToolContent - Needs update to use ToolContent // listUnwrap, - listReverse, // TODO: Check if uses ToolContent - listFindUnique, // TODO: Check if uses ToolContent - listFindMostPopular, // TODO: Check if uses ToolContent - listGroup, // TODO: Check if uses ToolContent + listReverse, // TODO: Check if uses ToolContent - Needs update to use ToolContent + listFindUnique, // TODO: Check if uses ToolContent - Needs update to use ToolContent + listFindMostPopular, // TODO: Check if uses ToolContent - Needs update to use ToolContent + listGroup, // TODO: Check if uses ToolContent - Needs update to use ToolContent // listWrap, - listRotate, // TODO: Check if uses ToolContent - listShuffle // TODO: Check if uses ToolContent + listRotate, // TODO: Check if uses ToolContent - Needs update to use ToolContent + listShuffle // TODO: Check if uses ToolContent - Needs update to use ToolContent // listTruncate, // listDuplicate ];