From de8894c5fe7d403450e11fd292aa3b6b08455051 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 1 Nov 2023 16:30:45 +0530 Subject: [PATCH] fix newline --- libs/remix-ui/run-tab/src/lib/actions/deploy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-ui/run-tab/src/lib/actions/deploy.ts b/libs/remix-ui/run-tab/src/lib/actions/deploy.ts index 0e368ec008..08d3e10af4 100644 --- a/libs/remix-ui/run-tab/src/lib/actions/deploy.ts +++ b/libs/remix-ui/run-tab/src/lib/actions/deploy.ts @@ -121,7 +121,7 @@ export const continueHandler = (dispatch: React.Dispatch, gasEstimationProm if (error) { let msg = typeof error !== 'string' ? error.message : error - if (msg.includes('invalid opcode')) msg += '/n OR the EVM version used by the selected environment is not compatible with the compiler EVM version.' + if (msg.includes('invalid opcode')) msg += '\n OR the EVM version used by the selected environment is not compatible with the compiler EVM version.' dispatch(displayNotification('Gas estimation failed', gasEstimationPrompt(msg), 'Send Transaction', 'Cancel Transaction', () => { continueTxExecution()