diff --git a/src/App.js b/src/App.js
index bdce1f9..b8b7acb 100644
--- a/src/App.js
+++ b/src/App.js
@@ -37,6 +37,7 @@ function Contract() {
const { connect } = useConnect({connector});
const { disconnect } = useDisconnect();
const _contract = {address: contractAddress, abi: ABI}
+ const [isLoading, setIsLoading] = useState(0);
const [options, setOptions] = useState({
totalSupply: null,
max: null,
@@ -226,7 +227,10 @@ function Contract() {
<>
{options.totalSupply === options.max && options.tokensSet === true && (
-
+
)}
{options.totalSupply === options.max && options.tokensSet === false && (
@@ -235,10 +239,11 @@ function Contract() {
{options.claimableTokens !== '' && (
{JSON.parse(options.claimableTokens).map((tokenId, idx) => (
-