Fix non-functional break statement

This commit is contained in:
2025-05-19 20:43:25 +00:00
parent 72755e91b5
commit 85584da807
+2 -1
View File
@@ -15,6 +15,7 @@ const ansiShownPassword = "\033[38;5;10m"
func EntryReader(decryptedEntry []string, hideSecrets, syncEnabled bool) {
fmt.Println()
fieldLoop:
for field := range decryptedEntry {
switch field {
case 0:
@@ -59,7 +60,7 @@ func EntryReader(decryptedEntry []string, hideSecrets, syncEnabled bool) {
renderNote(noteLines)
// break after notes have been printed
break
break fieldLoop
}
}