From eb1d14d27436c92e3a21a6521f7ae300dff4e380 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 24 Oct 2024 21:56:29 -0700 Subject: [PATCH] Use code points instead of literal emojis for notifications. --- app/pages/nemo-wallet.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/pages/nemo-wallet.html b/app/pages/nemo-wallet.html index ea82f61..759d845 100644 --- a/app/pages/nemo-wallet.html +++ b/app/pages/nemo-wallet.html @@ -117,9 +117,9 @@ container.appendChild(notification) notification.show() }, - info: (msg) => notify._show(`ℹ️ ${msg}`), - ok: (msg) => notify._show(`☑️ ${msg}`), - error: (msg) => notify._show(`⚠️ ${msg}`, 'Gold') + info: (msg) => notify._show(`${String.fromCodePoint(0x2139)}${String.fromCodePoint(0xFE0F)} ${msg}`), + ok: (msg) => notify._show(`${String.fromCodePoint(0x2705)}${String.fromCodePoint(0xFE0F)} ${msg}`), + error: (msg) => notify._show(`${String.fromCodePoint(0x26A0)}${String.fromCodePoint(0xFE0F)} ${msg}`) } function addToStorage (key, value) { -- 2.34.1