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;