Update props in components pass 2

This commit is contained in:
adilallo
2026-02-06 17:46:07 -07:00
parent 1ca11a2229
commit af0888798f
11 changed files with 145 additions and 14 deletions
@@ -15,6 +15,7 @@ function MultiSelectView({
onAddClick,
showAddButton,
addButtonText,
formHeader = true,
onCustomChipConfirm,
onCustomChipClose,
className,
@@ -32,7 +33,7 @@ function MultiSelectView({
return (
<div className={`flex flex-col ${isSmall ? "gap-[var(--measures-spacing-200,8px)]" : "gap-[var(--measures-spacing-300,12px)]"} items-start relative w-full ${className}`}>
{/* Label using InputLabel component */}
{label && (
{formHeader && label && (
<InputLabel
label={label}
helpIcon={showHelpIcon}