feat: increase journey depth slider max from 5 to 10

This commit is contained in:
Usman Baig
2026-03-15 11:27:18 +01:00
parent 20cda8d464
commit 302e683b32
2 changed files with 3 additions and 2 deletions

View File

@@ -122,13 +122,13 @@ export default function JourneysPage() {
<input
type="range"
min={2}
max={5}
max={10}
step={1}
value={depth}
onChange={(e) => setDepth(Number(e.target.value))}
className="w-32 accent-brand-orange"
/>
<span className="text-sm font-medium text-neutral-900 dark:text-white w-4">{depth}</span>
<span className="text-sm font-medium text-neutral-900 dark:text-white w-5">{depth}</span>
</div>
<Select