Alexander Belanger 5 лет назад
Родитель
Сommit
6c397e1e2e
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      internal/forms/chart.go

+ 0 - 5
internal/forms/chart.go

@@ -1,7 +1,6 @@
 package forms
 
 import (
-	"fmt"
 	"net/url"
 	"strconv"
 
@@ -17,11 +16,7 @@ type ChartForm struct {
 // PopulateHelmOptionsFromQueryParams populates fields in the ChartForm using the passed
 // url.Values (the parsed query params)
 func (cf *ChartForm) PopulateHelmOptionsFromQueryParams(vals url.Values) {
-	fmt.Println("HI THERE", vals, vals["context"])
-
 	if context, ok := vals["context"]; ok && len(context) == 1 {
-		fmt.Println("SETTING CONTEXT", context[0])
-
 		cf.Context = context[0]
 	}