From f84bef92dbace2662a83edf89b164af70c910a91 Mon Sep 17 00:00:00 2001 From: Anthony Dombrowski Date: Fri, 10 Nov 2023 19:12:10 -0600 Subject: [PATCH] should show the message about what's going to happen before it happens --- cli/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/index.js b/cli/index.js index b0b1dc1..5efa410 100644 --- a/cli/index.js +++ b/cli/index.js @@ -39,10 +39,10 @@ export const cli = async (clipboard, argv) => { // Great, there's something in the clipboard. Let's try to decode it as a // JWT. try { - const decoded = await decode(clipboard); // Show what we found in the clipboard console.log("Decoding: "); console.log(clipboard); + const decoded = await decode(clipboard); // Show the decoded jwt. console.log(decoded); return decoded;