From 036ddc10713d6e69cc9da3689a087172c38911f8 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Wed, 14 Jan 2026 17:26:20 +0100 Subject: [PATCH] fix: change +1 message from binary to hex (0x2B 0x31) --- src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.js b/src/app.js index 8a5e3d7..5569c3b 100644 --- a/src/app.js +++ b/src/app.js @@ -649,7 +649,7 @@ function runCode() { "Well done!", "Awesome!", "Nice work!", - "00101011 00110001" + "0x2B 0x31" ]; const randomQuote = crispyQuotes[Math.floor(Math.random() * crispyQuotes.length)]; elements.previewWrapper?.style.setProperty("--crispy-quote", `"${randomQuote}"`);