Skip to content

Commit 2e06f74

Browse files
ioedeveloperyann300
authored andcommitted
Remove unused logs
1 parent b6b6042 commit 2e06f74

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/circuit-compiler/src/app/components/container.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,11 @@ export function Container () {
1818
const showCompilerLicense = async (message = 'License not available') => {
1919
try {
2020
const response = await fetch('https://raw.githubusercontent.com/iden3/circom/master/COPYING')
21-
if (!response.ok) {
22-
throw new Error(`HTTP error! status: ${response.status}`)
23-
}
21+
if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`)
2422
const content = await response.text()
2523
// @ts-ignore
2624
circuitApp.plugin.call('notification', 'modal', { id: 'modal_circuit_compiler_license', title: 'Compiler License', message: content })
2725
} catch (e) {
28-
console.log('error: ', e)
2926
// @ts-ignore
3027
circuitApp.plugin.call('notification', 'modal', { id: 'modal_circuit_compiler_license', title: 'Compiler License', message })
3128
}

0 commit comments

Comments
 (0)