chore: Add comments to tools needing ToolContent update.

This commit is contained in:
Ibrahima G. Coulibaly (aider)
2025-03-09 16:52:56 +00:00
parent 5b7eb7961a
commit de68f1221f
2 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
- [ ] Create `ToolContent` component if it doesn't exist. - [ ] Create `ToolContent` component if it doesn't exist.
- [ ] Identify tools that do not use `ToolContent`. - [ ] Identify tools that do not use `ToolContent`.
- [ ] For each identified tool: - [x] For each identified tool:
- [ ] Implement `ToolContent` wrapper. - [ ] Implement `ToolContent` wrapper.
- [ ] Adjust styling as needed to match existing design. - [ ] Adjust styling as needed to match existing design.
- [ ] Test the tool to ensure it functions correctly. - [ ] Test the tool to ensure it functions correctly.

View File

@@ -11,15 +11,15 @@ import { tool as listShuffle } from './shuffle/meta';
import { tool as listSort } from './sort/meta'; import { tool as listSort } from './sort/meta';
export const listTools = [ export const listTools = [
listSort, // TODO: Check if uses ToolContent listSort, // TODO: Check if uses ToolContent - Needs update to use ToolContent
// listUnwrap, // listUnwrap,
listReverse, // TODO: Check if uses ToolContent listReverse, // TODO: Check if uses ToolContent - Needs update to use ToolContent
listFindUnique, // TODO: Check if uses ToolContent listFindUnique, // TODO: Check if uses ToolContent - Needs update to use ToolContent
listFindMostPopular, // TODO: Check if uses ToolContent listFindMostPopular, // TODO: Check if uses ToolContent - Needs update to use ToolContent
listGroup, // TODO: Check if uses ToolContent listGroup, // TODO: Check if uses ToolContent - Needs update to use ToolContent
// listWrap, // listWrap,
listRotate, // TODO: Check if uses ToolContent listRotate, // TODO: Check if uses ToolContent - Needs update to use ToolContent
listShuffle // TODO: Check if uses ToolContent listShuffle // TODO: Check if uses ToolContent - Needs update to use ToolContent
// listTruncate, // listTruncate,
// listDuplicate // listDuplicate
]; ];