From 5b7eb7961a29cb319e5b4350b7dfbc5f70da7eae Mon Sep 17 00:00:00 2001 From: "Ibrahima G. Coulibaly (aider)" Date: Sun, 9 Mar 2025 16:52:36 +0000 Subject: [PATCH] feat: Add comments to tools list to check ToolContent usage --- src/pages/tools/list/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/tools/list/index.ts b/src/pages/tools/list/index.ts index 0ea2f7c..4949114 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, + listSort, // TODO: Check if uses ToolContent // listUnwrap, - listReverse, - listFindUnique, - listFindMostPopular, - listGroup, + listReverse, // TODO: Check if uses ToolContent + listFindUnique, // TODO: Check if uses ToolContent + listFindMostPopular, // TODO: Check if uses ToolContent + listGroup, // TODO: Check if uses ToolContent // listWrap, - listRotate, - listShuffle + listRotate, // TODO: Check if uses ToolContent + listShuffle // TODO: Check if uses ToolContent // listTruncate, // listDuplicate ];