Ivan Galakhov 4 лет назад
Родитель
Сommit
721b763658

+ 0 - 1
dashboard/src/components/values-form/ValuesForm.tsx

@@ -310,7 +310,6 @@ export default class ValuesForm extends Component<PropsType, StateType> {
       return this.props.sections?.map((section: Section, i: number) => {
         // Hide collapsible section if deciding field is false
         if (section.show_if) {
-          console.log(this.props.metaState);
           if (
             !this.props.metaState[section.show_if] ||
             this.props.metaState[section.show_if].value === false

+ 0 - 1
server/api/git_repo_handler.go

@@ -260,7 +260,6 @@ func (app *App) HandleDetectBuildpack(w http.ResponseWriter, r *http.Request) {
 
 	for i := range directoryContents {
 		name := *directoryContents[i].Path
-		fmt.Println(name)
 		bname, ok := BREQS[name]
 		if ok {
 			matches++