Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
arjanjohan committed Sep 12, 2024
1 parent 78f6dab commit 2209f96
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ type BatchProps = {
const zeroAddress = "0x0000000000000000000000000000000000000000";

export const BatchDetails = ({ address }: BatchProps) => {
console.log(address);

const { data: allowListed, isLoading: allowListLoading } = useScaffoldReadContract({
contractName: "BatchRegistry",
functionName: "allowList",
Expand All @@ -21,7 +19,6 @@ export const BatchDetails = ({ address }: BatchProps) => {
functionName: "yourContractAddress",
args: [address],
});
console.log(allowListed, checkedIn);

return (
<>
Expand Down

0 comments on commit 2209f96

Please sign in to comment.