From 1943c4590587f0a3b84e60c6a1628a2ed37254b6 Mon Sep 17 00:00:00 2001 From: Kelly Hofmann <55991524+k3llymariee@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:53:22 -0700 Subject: [PATCH] fix: fix the step count (#121) * start at step 1! * 4 steps total --- internal/quickstart/container.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/quickstart/container.go b/internal/quickstart/container.go index 8cc81ddb..58275576 100644 --- a/internal/quickstart/container.go +++ b/internal/quickstart/container.go @@ -38,8 +38,9 @@ func NewContainerModel(flagsClient flags.Client, accessToken string, baseUri str accessToken: accessToken, baseUri: baseUri, currentModel: NewCreateFlagModel(flagsClient, accessToken, baseUri), + currentStep: 1, flagsClient: flagsClient, - totalSteps: 3, + totalSteps: 4, } }