Skip to content

Commit

Permalink
feat: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
markjung96 committed Nov 20, 2024
1 parent 5bfd6a2 commit ee5da4d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export const App: React.FunctionComponent = () => {
log.debug(`%cẅël̈l̈c̈öm̈ë-̈ẗö-̈ẅël̈l̈d̈ön̈ë-̈c̈öd̈ë!̈`, "color:yellow");
}, []);

console.info("version 0.2.3");

return (
<div className="App">
<Container>{global.client && <Main />}</Container>
Expand Down
3 changes: 0 additions & 3 deletions src/components/contracts/contract-address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ export const ContractAddress = ({}: ContractAddressProps) => {
};

const handleAtAddressOnClick = async () => {
console.log("client", client);
console.log("contractAddress", contractAddress);
if (!client || !contractAddress) return;
if (!isEthAddress(contractAddress)) {
setErrorMsg("Invalid address. Please enter a valid Ethereum address.");
Expand All @@ -54,7 +52,6 @@ export const ContractAddress = ({}: ContractAddressProps) => {
method: "at_address",
});
const addressFiltered = contractAddresses.concat(contractAddress);
console.log("addressFiltered", addressFiltered);
setContractAddresses(addressFiltered);

let targetAbi = abi.get(contractAddress);
Expand Down
1 change: 0 additions & 1 deletion src/const/endpoint.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { STAGE } from "./stage";
console.log("STAGE", STAGE);

const COMPILER_API_ENDPOINT_POOL = {
local: "http://localhost:8000",
Expand Down

0 comments on commit ee5da4d

Please sign in to comment.