From 1518915944485bebd2eda2fe8f1e1340c74010fc Mon Sep 17 00:00:00 2001 From: keeri Date: Fri, 12 May 2023 09:37:34 +0000 Subject: [PATCH] assuming dynamic json, 0 names returned merely means no match --- src/app/components/send/send.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/send/send.component.ts b/src/app/components/send/send.component.ts index c2508d6..7ad3f1c 100644 --- a/src/app/components/send/send.component.ts +++ b/src/app/components/send/send.component.ts @@ -393,7 +393,7 @@ export class SendComponent implements OnInit { if (aliasesInJsonCount === 0) { this.toAccountStatus = 0; // Error state - this.notificationService.sendWarning(`No aliases found on ${aliasDomain}`); + this.notificationService.sendWarning(`Alias @${aliasName} not found on ${aliasDomain}`); return; }