From c1ae5cbfb8011eeae6ec9e22344a608d35affb4b Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 17 Aug 2025 17:38:50 -0600 Subject: [PATCH] doc: Update messaging when deleting a contact to warn about same DIDs. --- src/views/DIDView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/DIDView.vue b/src/views/DIDView.vue index 4294ec4f..c2a46a4b 100644 --- a/src/views/DIDView.vue +++ b/src/views/DIDView.vue @@ -490,6 +490,7 @@ export default class DIDView extends Vue { message += " Note that they can see your activity, so if you want to hide your activity from them then you should do that first."; } + message += " Note that this will also remove anyone with the same DID underneath."; this.notify.confirm(message, async () => { await this.deleteContact(contact); });