From 24f67305726ae272005a79f6e8832d6af80bc930 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Mon, 11 Aug 2025 19:06:42 +0800 Subject: [PATCH] Fix: remove redundant method --- src/views/ContactGiftingView.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index ada50d5c..9ebee31a 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -357,12 +357,5 @@ export default class ContactGiftingView extends Vue { (this.stepType === "giver" && this.isFromProjectView) ); } - - get shouldShowYouEntity(): boolean { - return ( - this.stepType === "recipient" || - (this.stepType === "giver" && this.isFromProjectView) - ); - } }