Skip to content

Commit

Permalink
Add NFT URL
Browse files Browse the repository at this point in the history
  • Loading branch information
chiliec committed Mar 13, 2024
1 parent e542005 commit 2ec897e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bot/keyboards/queue-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function photoCaption(user: User) {
Comment: \`${user.description?.slice(0, 1000) ?? ""}\`
Description: \`${user.nftDescription ?? ""}\`
${user.nftImage ? `[Image](https://ipfs.io/ipfs/${user.nftImage}) | ` : ""} ${user.nftJson ? `[JSON](https://ipfs.io/ipfs/${user.nftJson})` : ""}
Minted: ${user.minted ? "✅" : "❌"} ${user.nftUrl ?? ""}
Minted: ${user.minted ? "✅" : "❌"} ${user.nftUrl ? `[NFT](${user.nftUrl})` : ""}
`;
}

Expand Down

0 comments on commit 2ec897e

Please sign in to comment.