Skip to content

Commit

Permalink
fix: NFT accumulator bug fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
parktest0325 committed Apr 22, 2024
1 parent 849cd5b commit 1112159
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
const scamFactoryContract = new web3.eth.Contract(ScamFactory.abi, CONTRACT_ADDRESS);
let file;
let traits = [];
let metadataArray = [];
const picaResizer = pica();
Expand Down Expand Up @@ -49,6 +47,9 @@
alert('Please select an image file.');
return;
}
let traits = [];
let metadataArray = [];
const reader = new FileReader();
Expand Down

0 comments on commit 1112159

Please sign in to comment.