fix: step numbering starts at 1 after Entry column

This commit is contained in:
Usman Baig
2026-03-16 22:27:11 +01:00
parent b16f01bd7f
commit 1ba6f6609d

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">
{column.index === 0 ? 'Entry' : `Step ${column.index + 1}`}
{column.index === 0 ? 'Entry' : `Step ${column.index}`}
</span>
<div className="flex items-baseline gap-1.5">
<span className="text-sm font-semibold text-neutral-900 dark:text-white tabular-nums">