remove uneeded try/catch

pull/3232/head
yann300 2 years ago committed by Aniket
parent 1e91f2fcbc
commit a790dfc783
  1. 26
      libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx

@ -319,21 +319,17 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
})
})
} catch (error) {
try {
unLoad()
setState(prevState => {
let errorMsg = error.message || error
if (typeof errorMsg !== 'string') {
errorMsg = JSON.stringify(errorMsg) + '. Possible error: the current endpoint does not support retrieving the trace of a transaction.'
}
return {
...prevState,
validationError: errorMsg
}
})
} catch (e) {
console.error(e)
}
unLoad()
setState(prevState => {
let errorMsg = error.message || error
if (typeof errorMsg !== 'string') {
errorMsg = JSON.stringify(errorMsg) + '. Possible error: the current endpoint does not support retrieving the trace of a transaction.'
}
return {
...prevState,
validationError: errorMsg
}
})
}
}, 300)
handleResize()

Loading…
Cancel
Save