fix: rename Step 1 to Entry in columns view, max depth to 6

This commit is contained in:
Usman Baig
2026-03-16 22:08:14 +01:00
parent 52427fea93
commit b16f01bd7f
2 changed files with 3 additions and 3 deletions

View File

@@ -148,12 +148,12 @@ export default function JourneysPage() {
<span className="text-brand-orange font-bold">
{depth} steps deep
</span>
<span>5 steps</span>
<span>6 steps</span>
</div>
<input
type="range"
min={2}
max={5}
max={6}
step={1}
value={depth}
onChange={(e) => setDepth(parseInt(e.target.value))}