From 08f277486a5f6d8578f6dd6616720376359991db Mon Sep 17 00:00:00 2001 From: Amer Agovic Date: Sat, 9 May 2026 06:50:30 -0500 Subject: [PATCH] Fix field action icon prop leakage --- src/ui/components/FieldControl.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/components/FieldControl.jsx b/src/ui/components/FieldControl.jsx index cf51748..3055548 100644 --- a/src/ui/components/FieldControl.jsx +++ b/src/ui/components/FieldControl.jsx @@ -101,12 +101,12 @@ function renderActionNode(action, context, fallbackColor = '$textMuted') { if (typeof action === 'string') { const IconComponent = getIcon(action); - return IconComponent ? : null; + return IconComponent ? : null; } if (action && typeof action === 'object' && action.icon) { const IconComponent = typeof action.icon === 'string' ? getIcon(action.icon) : action.icon; - return IconComponent ? : null; + return IconComponent ? : null; } return null;