Update SecretListItemView.swift

Removed delete confirmation handling from SecretListItemView.
This commit is contained in:
Max Goedjen 2025-12-13 20:10:46 -08:00 committed by GitHub
parent 595de41f03
commit 9baf6aa9ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,11 +36,6 @@ struct SecretListItemView: View {
}
}
}
.showingDeleteConfirmation(isPresented: $isDeleting, secret, store as? AnySecretStoreModifiable) { deleted in
if deleted {
deletedSecret(secret)
}
}
.sheet(isPresented: $isRenaming, onDismiss: {
renamedSecret(secret)
}, content: {