Remove 'customTitle' variable

This commit is contained in:
Jose Olarte III
2025-07-31 15:53:37 +08:00
parent 6d28a7d8a3
commit 0582954cfa
6 changed files with 5 additions and 23 deletions

View File

@@ -225,7 +225,6 @@ export default class ContactGiftingView extends Vue {
giver,
recipient,
undefined,
this.stepType === "giver" ? "Given by Unnamed" : "Given to Unnamed",
this.prompt,
);
// Immediately select "Unnamed" and move to Step 2
@@ -276,9 +275,6 @@ export default class ContactGiftingView extends Vue {
giver,
recipient,
undefined,
this.stepType === "giver"
? "Given by " + (contact?.name || "someone not named")
: "Given to " + (contact?.name || "someone not named"),
this.prompt,
);
}