From a05ee351ce8909c94b3e090b4707dbe61b1b6d93 Mon Sep 17 00:00:00 2001 From: Dark Hole Date: Wed, 18 Jun 2025 10:46:03 +0300 Subject: [PATCH] Fixed incorrect keys for long instructions --- app/src/ui/Code.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {