Hide unused helper marks on selection cards and modal section labels until tooltip behavior ships.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
adilallo
2026-08-21 16:28:38 -06:00
co-authored by Cursor
parent ef60175805
commit 440b6a9657
19 changed files with 92 additions and 25 deletions
@@ -60,7 +60,6 @@ function CustomMethodCardFieldBlocksSummaryViewComponent({
<div key={block.id} className="flex flex-col gap-2">
<InputLabel
label={block.blockTitle}
helpIcon
size="s"
palette="default"
/>
@@ -123,7 +122,6 @@ function CustomMethodCardFieldBlocksSummaryViewComponent({
<div className="flex flex-col gap-2">
<InputLabel
label={block.blockTitle}
helpIcon
size="s"
palette="default"
/>
@@ -169,6 +167,7 @@ function CustomMethodCardFieldBlocksSummaryViewComponent({
<IncrementerBlock
key={block.id}
label={block.blockTitle}
helpIcon={false}
value={block.defaultPercent}
min={1}
max={100}
@@ -30,7 +30,6 @@ function CustomMethodCardUploadBlockRowViewComponent({
<div className="flex flex-col gap-2">
<InputLabel
label={block.blockTitle}
helpIcon
size="s"
palette="default"
/>
@@ -77,6 +76,7 @@ function CustomMethodCardUploadBlockRowViewComponent({
) : (
<Upload
active={!busy}
showHelpIcon={false}
hintText={busy ? uploadingHint : uploadHint}
onClick={onUploadClick}
/>