Change hard-coded bundleID to automatically retrieved one (#202)

This commit is contained in:
lavalleeale
2021-01-18 20:08:52 -08:00
committed by GitHub
parent 8dfabd35aa
commit dca340ad40
6 changed files with 20 additions and 12 deletions

View File

@@ -25,9 +25,9 @@ struct SecretDetailView<SecretType: Secret>: View {
}
var dashedKeyName: String {
secret.name.replacingOccurrences(of: " ", with: "-")
secret.name.replacingOccurrences(of: " ", with: "-")
}
var dashedHostName: String {
["secretive", Host.current().localizedName, "local"]
.compactMap { $0 }