From 1ba6f6609dbaea2c9337ec7c81ec88a342ddc125 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Mon, 16 Mar 2026 22:27:11 +0100 Subject: [PATCH] fix: step numbering starts at 1 after Entry column --- components/journeys/ColumnJourney.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/journeys/ColumnJourney.tsx b/components/journeys/ColumnJourney.tsx index c03ca18..fe6e706 100644 --- a/components/journeys/ColumnJourney.tsx +++ b/components/journeys/ColumnJourney.tsx @@ -163,7 +163,7 @@ function ColumnHeader({ return (
- {column.index === 0 ? 'Entry' : `Step ${column.index + 1}`} + {column.index === 0 ? 'Entry' : `Step ${column.index}`}