Исправить подпись SendSignal в UI

This commit is contained in:
AidarKC
2026-06-28 12:09:13 +04:00
parent aa02e92e4d
commit 05a9441493
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ function normalizeHex32(value, fallback = ZERO64) {
async function sha256Base64FromText(text) {
const digest = await sha256Bytes(utf8Bytes(String(text || '')));
return bytesToBase64(digest);
return bytesToBase64(digest).replace(/=+$/g, '');
}
function concatBytes(...chunks) {