diff --git a/app/src/ui/Code.tsx b/app/src/ui/Code.tsx
index 77f8ab9..3cc9871 100644
--- a/app/src/ui/Code.tsx
+++ b/app/src/ui/Code.tsx
@@ -52,7 +52,7 @@ const convertBits = (
const hex = num.toString(16);
const paddedHex = hex.padStart(text.length / 4, "0");
spaced = Array.from(paddedHex.matchAll(/.{2}/g)).map((res, j) =>
- Array.from(res[0]).map((e, i) => {e})
+ Array.from(res[0]).map((e, i) => {e})
);
}
if (order === InputOrder.BYTE_ORDER_BE) {