Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniket-Engg committed Mar 14, 2024
1 parent 77398e9 commit f2056bf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion apps/learneth/src/redux/models/workshop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ const Model: ModelType = {
const url = `${apiUrl}/clone/${encodeURIComponent(payload.name)}/${payload.branch}?${Math.random()}`
console.log('loading ', url)
const {data} = yield axios.get(url)
console.log(data)
const repoId = `${payload.name}-${payload.branch}`

for (let i = 0; i < data.ids.length; i++) {
Expand Down
1 change: 0 additions & 1 deletion apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ function App() {
const customProfiles = ['menuicons', 'tabs', 'solidityUnitTesting', 'hardhat-provider', 'notification']

client.testCommand = async (data: any) => {
console.log(data)
methodLog(data)
}

Expand Down
1 change: 0 additions & 1 deletion libs/remix-core-plugin/src/lib/helpers/fetch-blockscout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export const fetchContractFromBlockscout = async (plugin, endpoint, contractAddr
try {
data = await fetch('https://' + endpoint + '/api?module=contract&action=getsourcecode&address=' + contractAddress)
data = await data.json()
console.log(data)
// blockscout api doc https://blockscout.com/poa/core/api-docs
if (data.message === 'OK' && data.status === "1") {
if (data.result.length) {
Expand Down

0 comments on commit f2056bf

Please sign in to comment.