diff --git a/assets/js/src/common/steps/steps.tsx b/assets/js/src/common/steps/steps.tsx index 3192d2184b..031e4c89d5 100644 --- a/assets/js/src/common/steps/steps.tsx +++ b/assets/js/src/common/steps/steps.tsx @@ -19,7 +19,7 @@ const Steps = ({ count, current, titles }: Props) => ( })} >
{i >= current ? i : ''}
-
{titles[i - 1] || ''}
+ {titles[i - 1] &&
{titles[i - 1] || ''}
} ))}