Skip to content

Commit

Permalink
chore: supress missing error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliomir committed Jan 13, 2024
1 parent bc37ab2 commit 878f69e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/screens/Wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ function Wallet() {
const [successMessage, setSuccessMessage] = useState('');

Check warning on line 47 in src/screens/Wallet.js

View check run for this annotation

Codecov / codecov/patch

src/screens/Wallet.js#L47

Added line #L47 was not covered by tests
/* shouldShowAdministrativeTab {boolean} If we should display the Administrative Tools tab */
const [shouldShowAdministrativeTab, setShouldShowAdministrativeTab] = useState(false); // TODO: Refactor this name
const [errorMessage, setErrorMessage] = useState(''); // TODO: Metadata token error are being suppressed as of now
const [totalSupply, setTotalSupply] = useState(null);
const [canMint, setCanMint] = useState(false);
const [canMelt, setCanMelt] = useState(false);
Expand Down

0 comments on commit 878f69e

Please sign in to comment.