Skip to content

Commit

Permalink
chore: fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
genaroibc committed Oct 23, 2024
1 parent 7ccfb43 commit 2a3dad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/evm/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class Utils {
return {
isApproved: true,
message:
tokenSymbol != null
tokenSymbol == null
? `User has the expected balance ${amount}`
: `User has the expected balance ${amount} of ${tokenSymbol}`,
};
Expand Down

0 comments on commit 2a3dad8

Please sign in to comment.