diff --git a/src/components/GiftedDialog.vue b/src/components/GiftedDialog.vue index f7748045..51b7e833 100644 --- a/src/components/GiftedDialog.vue +++ b/src/components/GiftedDialog.vue @@ -1025,7 +1025,6 @@ export default class GiftedDialog extends Vue { selectProject(project: PlanData) { this.giver = { - did: project.handleId, name: project.name, image: project.image, handleId: project.handleId, @@ -1054,7 +1053,7 @@ export default class GiftedDialog extends Vue { selectRecipientProject(project: PlanData) { this.receiver = { - did: project.handleId, + // no did, because it's a project name: project.name, image: project.image, handleId: project.handleId, diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index 07372cdb..d351fdcb 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -226,7 +226,7 @@ export default class ContactGiftingView extends Vue { // Preserve the existing giver from the context if (this.giverEntityType === "project") { giver = { - did: this.giverProjectHandleId, + // no did, because it's a project name: this.giverProjectName, image: this.giverProjectImage, handleId: this.giverProjectHandleId, diff --git a/src/views/ProjectViewView.vue b/src/views/ProjectViewView.vue index ef67d0d3..9690872e 100644 --- a/src/views/ProjectViewView.vue +++ b/src/views/ProjectViewView.vue @@ -1269,7 +1269,6 @@ export default class ProjectViewView extends Vue { `${this.name} gave to you`, undefined, undefined, - true, ); }