Skip to content

Commit ae49adc

Browse files
authored
Merge pull request #6 from svyc/main
fix(menu): correct misplaced closing brace in switch case menu
2 parents bbc0067 + 537e7f2 commit ae49adc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Valkan/Internal/ui/terminal.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,16 +293,16 @@ func ShowMenu() {
293293
}
294294
}
295295

296-
default:
297-
fmt.Println(Red + "Opção inválida, tente novamente." + Reset)
298-
}
299-
300296
case "4":
301297
showHelp()
302298

303299
case "5":
304300
fmt.Println("Saindo...")
305301
return
302+
303+
default:
304+
fmt.Println(Red + "Opção inválida, tente novamente." + Reset)
305+
}
306306
}
307307
}
308308

0 commit comments

Comments
 (0)