From 4fd02db0794f9879b99f08b0f22de15c6020087c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 28 Aug 2025 21:03:33 +0300 Subject: [PATCH] chore(react): remove irrelevant TODO --- apps/client/src/widgets/react/ActionButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/react/ActionButton.tsx b/apps/client/src/widgets/react/ActionButton.tsx index 41c4abbed..f12d6b286 100644 --- a/apps/client/src/widgets/react/ActionButton.tsx +++ b/apps/client/src/widgets/react/ActionButton.tsx @@ -5,7 +5,7 @@ import keyboard_actions from "../../services/keyboard_actions"; export interface ActionButtonProps { text: string; - titlePosition?: "bottom" | "left"; // TODO: Use it + titlePosition?: "bottom" | "left"; icon: string; className?: string; onClick?: (e: MouseEvent) => void;