diff --git a/src/Util.js b/src/Util.js index d1691550..471d6713 100644 --- a/src/Util.js +++ b/src/Util.js @@ -61,7 +61,7 @@ export function hexToBech32(hrp, hex) { if (typeof hex !== "string" || hex.length === 0 || hex.length % 2 != 0) { return ""; } - + try { let buf = secp.utils.hexToBytes(hex); return bech32.encode(hrp, bech32.toWords(buf)); diff --git a/src/pages/ProfilePage.css b/src/pages/ProfilePage.css index 0d52c9b4..22812eee 100644 --- a/src/pages/ProfilePage.css +++ b/src/pages/ProfilePage.css @@ -208,5 +208,6 @@ .profile .no-banner .details-wrapper { margin-left: 10px; margin-top: 21px; + max-width: 420px; } }