Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bitkit/Managers/PubkyProfileManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ class PubkyProfileManager: ObservableObject {
}

func deleteProfile() async throws {
try await Self.removePrivatePaykitEndpoints(context: "PubkyProfileManager.deleteProfile")
await Self.removePrivatePaykitEndpointsBestEffort(context: "PubkyProfileManager.deleteProfile")
do {
try await Task.detached {
try await PubkyService.deletePaykitProfile()
Expand Down
2 changes: 1 addition & 1 deletion Bitkit/Resources/Localization/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@
"profile__edit_delete_section" = "DELETE";
"profile__edit_public_note" = "Please note profile information is stored in public files. Changes you make in Bitkit will not update your pubky.app profile.";
"profile__delete_title" = "Delete Profile?";
"profile__delete_description" = "Are you sure you want to delete all of your profile information for your pubky?";
"profile__delete_description" = "Deleting your profile removes it from Pubky. Contacts may still retain profile and payment information previously shared with them.";
"profile__delete_confirm" = "Yes, Delete";
"profile__delete_error_title" = "Unable to Delete Profile";
"profile__delete_error_description" = "We couldn't delete your profile data. Retry, or disconnect this pubky from Bitkit.";
Expand Down
1 change: 1 addition & 0 deletions changelog.d/next/640.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed profile deletion being blocked when private Paykit contact cleanup could not complete.
Loading