From 22fb6255e54a9efcf0f36bc5c9d20ddede0c3adf Mon Sep 17 00:00:00 2001 From: Maxwell Swadling Date: Sun, 12 Mar 2023 12:23:15 +1000 Subject: [PATCH] Fixed bug with empty store views hash collision --- Sources/Secretive/Views/EmptyStoreView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/Secretive/Views/EmptyStoreView.swift b/Sources/Secretive/Views/EmptyStoreView.swift index 5bd48c1..3412613 100644 --- a/Sources/Secretive/Views/EmptyStoreView.swift +++ b/Sources/Secretive/Views/EmptyStoreView.swift @@ -8,11 +8,11 @@ struct EmptyStoreView: View { var body: some View { if store is AnySecretStoreModifiable { - NavigationLink(destination: EmptyStoreModifiableView(), tag: Constants.emptyStoreModifiableTag, selection: $activeSecret) { + NavigationLink(destination: EmptyStoreModifiableView(), tag: Constants.emptyStoreModifiableTag + store.name, selection: $activeSecret) { Text("No Secrets") } } else { - NavigationLink(destination: EmptyStoreImmutableView(), tag: Constants.emptyStoreTag, selection: $activeSecret) { + NavigationLink(destination: EmptyStoreImmutableView(), tag: Constants.emptyStoreTag + store.name, selection: $activeSecret) { Text("No Secrets") } } @@ -22,8 +22,8 @@ struct EmptyStoreView: View { extension EmptyStoreView { enum Constants { - static let emptyStoreModifiableTag: AnyHashable = "emptyStoreModifiableTag" - static let emptyStoreTag: AnyHashable = "emptyStoreModifiableTag" + static let emptyStoreModifiableTag = "emptyStoreModifiableTag" + static let emptyStoreTag = "emptyStoreModifiableTag" } }