Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
Off-by-one error in wizard nav validation
Browse files Browse the repository at this point in the history
  • Loading branch information
mturley committed May 10, 2021
1 parent 2cba51a commit 785ea07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Plans/components/Wizard/PlanWizard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const PlanWizard: React.FunctionComponent = () => {
);

enum StepId {
General = 1,
General = 0,
FilterVMs,
SelectVMs,
NetworkMapping,
Expand Down

0 comments on commit 785ea07

Please sign in to comment.