Fix: remove redundant method

This commit is contained in:
Jose Olarte III
2025-08-11 19:06:42 +08:00
parent 0fc44b31bf
commit 24f6730572

View File

@@ -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)
);
}
}
</script>