We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aeb6c2 commit 643aae5Copy full SHA for 643aae5
apps/web/ui/partners/lander/blocks/earnings-calculator-block.tsx
@@ -73,12 +73,16 @@ export function EarningsCalculatorBlock({
73
<div className="relative overflow-hidden rounded-[10px] border border-neutral-100 bg-neutral-50 p-5">
74
<WavePattern />
75
<div className="relative z-10 flex flex-col gap-5">
76
- <p className="text-base font-medium leading-6 tracking-[-0.32px] text-neutral-500">
+ <p
77
+ id={`${id}-label`}
78
+ className="text-base font-medium leading-6 tracking-[-0.32px] text-neutral-500"
79
+ >
80
<NumberFlow value={value} /> customer sales
81
</p>
82
<input
83
id={`${id}-slider`}
84
type="range"
85
+ aria-labelledby={`${id}-label`}
86
min={SLIDER_MIN}
87
max={SLIDER_MAX}
88
value={value}
0 commit comments