Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gianalarcon committed Jul 25, 2024
1 parent db4ae53 commit 60c78f0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/nextjs/app/token-vendor/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const TokenVendor: NextPage = () => {
}
};

// FixMe: This is a hack to get the symbol of the token. Propose a better way to do this.
// FixMe: This is a hack to get the symbol of the token. Propose a better way to do this.
const parsedSymbol = yourTokenSymbol
? byteArray.stringFromByteArray(yourTokenSymbol as any)
: "";
Expand Down Expand Up @@ -188,15 +188,12 @@ const TokenVendor: NextPage = () => {
</div>
<button
className="btn btn-secondary"
onClick={wrapInTryCatch(
() => transferTokens(),
"transferTokens"
)}
onClick={wrapInTryCatch(() => transferTokens(), "transferTokens")}
>
Send Tokens
</button>
</div>
)}
)}

{/* Sell Tokens */}
{/* {!!yourTokenBalance && (
Expand Down

0 comments on commit 60c78f0

Please sign in to comment.