Skip to content

Commit

Permalink
Update codeSnippets.ts (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwme authored Jul 6, 2023
1 parent 04b06f2 commit 9b9efe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/components/Tutorial/codeSnippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ contract NFTContract is ERC721 {
);
}
function mintAllowList(uint256 _tokenId, bytes32[] _proof) external {
function mintAllowList(uint256 _tokenId, bytes32[] calldata _proof) external {
require(allowListed(msg.sender, _proof), "You are not on the allowlist");
_mint(msg.sender, _tokenId);
}
Expand Down

1 comment on commit 9b9efe8

@vercel
Copy link

@vercel vercel bot commented on 9b9efe8 Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lanyard – ./

lanyard.mf.dev
lanyard-git-main.mf.dev
lanyard-production.mf.dev

Please sign in to comment.