Skip to content

Commit

Permalink
should show the message about what's going to happen before it happens
Browse files Browse the repository at this point in the history
  • Loading branch information
akdombrowski committed Nov 11, 2023
1 parent 5eaf351 commit f84bef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f84bef9

Please sign in to comment.