Skip to content

Commit

Permalink
make soul names show properly
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Mar 31, 2023
1 parent e759299 commit 89c1d16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/soul-name/show.ts
Expand Up @@ -7,5 +7,8 @@ export const show = async (soulName: string) => {
const details = await masa.soulName.loadSoulNameByName(
soulName.replace(extension, "")
);
if (details) printSoulName(details);

if (details) {
printSoulName(details, undefined, masa.config.verbose);
}
};

0 comments on commit 89c1d16

Please sign in to comment.