We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0de2ed commit d1b3783Copy full SHA for d1b3783
1 file changed
internal/apply/apply.go
@@ -106,10 +106,7 @@ func promptEnvironments() []string {
106
"Both Staging and Production": {"stage", "prod"},
107
}
108
109
- var labels []string
110
- for label := range items {
111
- labels = append(labels, label)
112
- }
+ labels := []string{"Staging", "Production", "Both Staging and Production"}
113
114
providerPrompt := promptui.Select{
115
Label: "Environments",
0 commit comments