Do not check if an entry already exists when writing (add); an earlier check is already performed

This commit is contained in:
2025-01-18 19:33:54 -05:00
parent 38ddc32656
commit dd8464ecd9
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -48,5 +48,5 @@ func AddEntry(targetLocation string, hideSecrets bool, entryType uint8) {
}
// write and preview the new entry
writeEntryCLI(targetLocation, unencryptedEntry, hideSecrets, false)
writeEntryCLI(targetLocation, unencryptedEntry, hideSecrets)
}