diff --git a/ui/desktop/src/components/ChatInput.tsx b/ui/desktop/src/components/ChatInput.tsx
index a79327fbaa..4d6d86bdf8 100644
--- a/ui/desktop/src/components/ChatInput.tsx
+++ b/ui/desktop/src/components/ChatInput.tsx
@@ -1676,7 +1676,7 @@ export default function ChatInput({
onClick={handleActionButtonClick}
variant="ghost"
size="sm"
- className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors px-0"
+ className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors !px-0"
>
Actions
@@ -1694,7 +1694,7 @@ export default function ChatInput({
onClick={handleFileSelect}
variant="ghost"
size="sm"
- className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors px-0"
+ className="flex items-center text-text-default/70 hover:text-text-default text-xs cursor-pointer transition-colors !px-0"
>
Attach
diff --git a/ui/desktop/src/components/icons/Action.tsx b/ui/desktop/src/components/icons/Action.tsx
index 2a770dbe82..2ccda29292 100644
--- a/ui/desktop/src/components/icons/Action.tsx
+++ b/ui/desktop/src/components/icons/Action.tsx
@@ -21,8 +21,6 @@ const Action: React.FC = ({ className = '', size = 16 }) => {
{/* Plus symbol */}
- {/* Action indicator - small circle at bottom right */}
-
);
};