diff --git a/apps/remix-ide-e2e/src/tests/debugger.test.ts b/apps/remix-ide-e2e/src/tests/debugger.test.ts index 19c11cdaf1..9e3b84eea3 100644 --- a/apps/remix-ide-e2e/src/tests/debugger.test.ts +++ b/apps/remix-ide-e2e/src/tests/debugger.test.ts @@ -183,7 +183,6 @@ module.exports = { .getEditorValue((content) => { browser.assert.ok(content.indexOf('if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }') != -1, 'current displayed content is not a generated source') }) - .modalFooterOKClick() .click('*[data-id="debuggerTransactionStartButton"]') }, diff --git a/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx b/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx index 608c69704f..3d0927544e 100644 --- a/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx +++ b/libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx @@ -88,7 +88,6 @@ export const DebuggerUI = (props: DebuggerUIProps) => { content = await debuggerModule.getFile(path) } catch (e) { const message = 'Unable to fetch generated sources, the file probably doesn\'t exist yet.' - debuggerModule.showMessage('Debugging error', message) console.log(message, ' ', e) } if (content !== source.contents) {