Rename bundleIDs.swift

Removed incorrectly added changes
This commit is contained in:
Alex Lavallee
2021-01-17 22:56:08 -08:00
parent aac15f91e4
commit eeb6387839
3 changed files with 7 additions and 7 deletions

View File

@@ -24,12 +24,12 @@ struct SecretDetailView<SecretType: Secret>: View {
.frame(minHeight: 200, maxHeight: .infinity)
}
var dashedUserName: String {
NSUserName().replacingOccurrences(of: " ", with: "-")
var dashedKeyName: String {
secret.name.replacingOccurrences(of: " ", with: "-")
}
var dashedHostName: String {
[Host.current().localizedName, "local"]
["secretive", Host.current().localizedName, "local"]
.compactMap { $0 }
.joined(separator: ".")
.replacingOccurrences(of: " ", with: "-")