From ca8d72e1c9f1ea7626da0a2bed5cadbc3f4f31ef Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Mon, 18 Aug 2025 16:43:15 +0800 Subject: [PATCH] Fix: remove non-applicable IDs - Projects use handleID, not DID --- src/views/ContactGiftingView.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index f27abc13..31bec106 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -279,7 +279,6 @@ export default class ContactGiftingView extends Vue { private createRecipientFromContext(): GiverReceiverInputInfo { if (this.recipientEntityType === "project") { return { - did: this.recipientProjectHandleId, name: this.recipientProjectName, image: this.recipientProjectImage, handleId: this.recipientProjectHandleId, @@ -304,7 +303,6 @@ export default class ContactGiftingView extends Vue { private createGiverFromContext(): GiverReceiverInputInfo { if (this.giverEntityType === "project") { return { - did: this.giverProjectHandleId, name: this.giverProjectName, image: this.giverProjectImage, handleId: this.giverProjectHandleId,