Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Mar 17, 2023
1 parent 8bacf48 commit 1b11435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/soul-name/resolve.ts
Expand Up @@ -17,7 +17,7 @@ export const resolveReverse = async (address: string) => {

if (soulNames.length > 0) {
console.log("Soul names:", "\n");
soulNames.map((soulName) => {
soulNames.map((soulName: string) => {
console.log(`${soulName}${extension}`);
});
} else {
Expand Down

0 comments on commit 1b11435

Please sign in to comment.