diff --git a/packages/web/src/components/FlowAppIcons/index.jsx b/packages/web/src/components/FlowAppIcons/index.jsx index f95874e6..b90cfa23 100644 --- a/packages/web/src/components/FlowAppIcons/index.jsx +++ b/packages/web/src/components/FlowAppIcons/index.jsx @@ -4,7 +4,7 @@ import AppIcon from 'components/AppIcon'; import IntermediateStepCount from 'components/IntermediateStepCount'; function FlowAppIcons(props) { - const { steps } = props; + const { steps = [] } = props; const stepsCount = steps.length; const firstStep = steps[0]; const lastStep = steps.length > 1 && steps[stepsCount - 1]; @@ -14,7 +14,7 @@ function FlowAppIcons(props) { @@ -26,7 +26,7 @@ function FlowAppIcons(props) { )}