From 674b547a58d99b0fc3194c5a805d7c4bb34aa959 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Mon, 16 Jun 2025 21:06:52 +0300 Subject: [PATCH] fix return of primary name --- src/qortalRequests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qortalRequests.ts b/src/qortalRequests.ts index 8747a7a..0ef92d1 100644 --- a/src/qortalRequests.ts +++ b/src/qortalRequests.ts @@ -949,7 +949,7 @@ chrome?.runtime?.onMessage.addListener((request, sender, sendResponse) => { getNameInfoForOthers(data) .then((res) => { - const resData = res ? res : null; + const resData = res ? res : ""; sendResponse(resData); }) .catch((error) => {