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))}

View File

@@ -163,7 +163,7 @@ function ColumnHeader({
return (
<div className="flex flex-col items-center gap-0.5 mb-4">
<span className="text-xs font-medium text-neutral-400 dark:text-neutral-500 uppercase tracking-wider">
Step {column.index + 1}
{column.index === 0 ? 'Entry' : `Step ${column.index + 1}`}
</span>
<div className="flex items-baseline gap-1.5">
<span className="text-sm font-semibold text-neutral-900 dark:text-white tabular-nums">