Compare commits

...

1 Commits

Author SHA1 Message Date
Max Goedjen
9baf6aa9ed Update SecretListItemView.swift
Removed delete confirmation handling from SecretListItemView.
2025-12-13 20:10:46 -08:00

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: {